<img data-gif-preload data-thumb="thumb.jpg" data-src="animation.gif">
(function($) {
'use strict';
$.each($('[data-gif-preload]'), function() {
$(this).attr('src', $(this).attr('data-thumb'));
$('<img/>', {
'src': $(this).attr('data-src')
}).on('load', function() {
$(this).attr('src', $(this).attr('data-src'));
}.bind(this));
});
})(jQuery);