I have an animated gif that I am lazy loading into the last slide of a FlexSlider slideshow.
var timeout = setTimeout(function() {$(".slides img:last").attr( 'src', '/animation.gif')}, 5000);
The slideshow is set to stop on the last slide using the FlexSlider api with animationLoop: false
The problem is that the gif shows the animation once then stops. The gif image is saved to loop. I've also tried to reload the gif using the FlexSlider end
callback
Is there a way to keep the gif looping?