
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Simply play and pause gifs
npm install gif-stop
Returns a GifStop
object
imgs = document.getElementsByTagName('IMG');
// Play the gifs and stop after five seconds
gifs = gifStop(imgs, {
playOn: 'click',
onReady: function(gif){
gif.play()
setTimout(function(){
gif.stop()
}, 5000)
}
});
imgs = document.getElementsByTagName('IMG');
gifs = gifStop(imgs)
// Plays all gifs
gifs.play()
// Stops all gifs
gifs.stop()
// Removes event handlers
gifs.destroy()
Option | Default | type | Description |
---|---|---|---|
playOn | hover | string | Whether you want the gif played on hover or click. Can be set to hover or click . |
className | gif-playing | string | The class you want added to the image when it is playing. |
onPlay | null | function | The function is called when the gif is played. It is passed a Gif object. |
onStop | null | function | The function is called when the gif is stopped. It is passed a Gif object. |
onReady | null | function | The function is called when the gif is loaded and ready to be stopped. It is passed a Gif object. |
This takes similar options as gifStop
and setConfig
. The main difference is that you can only pass one gif.
Option | Default | type | Description |
---|---|---|---|
className | gif-playing | string | The class you want added to the image when it is playing. |
onPlay | null | function | The function is called when the gif is played. It is passed a Gif object. |
onStop | null | function | The function is called when the gif is stopped. It is passed a Gif object. |
onReady | null | function | The function is called when the gif is loaded and ready to be stopped. It is passed a Gif object. |
gulp
before publishing to npm so the CoffeeScript will be compiledFAQs
Simply play and pause gifs
The npm package gif-stop receives a total of 11 weekly downloads. As such, gif-stop popularity was classified as not popular.
We found that gif-stop demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.