How to animate GIFs in HTML document?

By default browser always plays animated gifs, and you can’t change that behavior. If the gif image does not animate there can be 2 ways to look: something wrong with the browser, something wrong with the image. Then to exclude the first variant just check trusted image in your browser (run snippet below, this gif definitely … Read more

Load Animated gif in UIImageView IOS

I would recommend breaking out the frames of that gif and use animatedImageNamed:duration: – you can name them all the similar name with a number change at the end. For instance: loading-1.png loading-2.png loading-3.png etc. Xcode will recognize you want multiple images and will play those through in order. Look at THIS