About 290,000 results
Open links in new tab
  1. Can you control GIF animation with Javascript? - Stack Overflow

    If you want to use JavaScript, you’re most likely alternatives are controlling genuine video or using CSS sprites. The benefit of using CSS sprites is that you end up transferring a single image, …

  2. GitHub - jnordberg/gif.js: JavaScript GIF encoding library

    JavaScript GIF encoder that runs in your browser. Uses typed arrays and web workers to render each frame in the background, it's really fast! Demo - http://jnordberg.github.io/gif.js/ Works in …

  3. Making GIFs in JavaScript - Medium

    Oct 15, 2021 · To start, I downloaded gif-encoder-2 and canvas via npm. gif-encoder-2 is one library that allows for the easy creation of GIFs in JavaScript. canvas assists this library in …

  4. JavaScript: Create an Animated GIF from scratch with Custom …

    Jun 11, 2023 · By following this guide, you will learn how to generate GIFs programmatically, customize the appearance of frames, and merge them into a single GIF file. The resulting GIF …

  5. gif.js - jnordberg.github.io

    Full-featured JavaScript GIF encoder that runs in your browser. Download & Docs on GitHub

  6. Pure JavaScript HTML5 to (Animated) GIF Conversion - GitHub

    Based on as3gif Ported by Kevin Kwok. AS3GIF lets you play and encode animated GIF's with ActionScript 3. Since web pages can usually natively play GIFs fine, it's only a port of the …

  7. Make GIF in Javascript from multiple images without any library

    Feb 13, 2018 · Using this method, I can make a simple code to change between two images every second (explanatory comments to the right, scroll to see them better): var picture = …

  8. Creating gifs using gif.js. Here’s how to use gif.js: | by 김원중 ...

    May 11, 2023 · Here’s how to use gif.js: Download gif.js from the github repository. Put gif.js and gif.worker.js from the dist folder into your project folder. Import gif.js into your project. Create a …

  9. sole/Animated_GIF: Javascript library for creating animated GIFs - GitHub

    Here's a quick walkthrough of each of the files in src/ and what they do: Animated_GIF.js - definition of the Animated_GIF class. Holds the logic for the queueing and rendering of the …

  10. How to use JS to trigger a GIF animation? - Stack Overflow

    You could export the individual frames as their own images and handle animation via javascript. It lets you do a couple of cool things. A colleague recently had a little timer animation that was …