我想要点击时播放一个gif,然后再次点击时停止播放。我正在遵循这种方法:http://www.hongkiat.com/blog/on-click-animated-gif/
到目前为止,我有:
HTML
<figure>
<img src="test.png" alt="Static Image" data-alt="test.gif"/>
</figure>
<script src="playGif.js" type="text/javascript"></script>
playGif.js
(function($) {
// retrieve gif
var getGif = function() {
var gif = [];
$('img').each(function() {
var data = $(this).data('alt');
gif.push(data);
});
return gif;
}
var gif = getGif();
// pre-load gif
var image = [];
$.each(gif, function(index) {
image[index] = new Image();
image[index].src = gif[index];
});
// swap on click
$('figure').on('click', function() {
var $this = $(this),
$index = $this.index(),
$img = $this.children('img'),
$imgSrc = $img.attr('src'),
$imgAlt = $img.attr('data-alt'),
$imgExt = $imgAlt.split('.');
if($imgExt[1] === 'gif') {
$img.attr('src', $img.data('alt')).attr('data-alt', $imgSrc);
} else {
$img.attr('src', $imgAlt).attr('data-alt', $img.data('alt'));
}
});
})(jQuery);
不是交换src和data-alt的内容,而是将data-alt放入src,而data-alt保持不变。
gif确实会在点击时播放,但如果再次点击它会重新加载gif而不是恢复到png(至少在Chrome和Firefox中。IE只会在进一步点击时不执行任何操作)。
答案 0 :(得分:2)
所以这里是完成的jsfiddle:https://jsfiddle.net/2060cm1c/
这是一个简单的变量交换问题:
a=1;b=2;
a=b;// now a=2
b=a;// a=2, b=a=2
要解决此问题,您需要一个临时变量:
a=1;b=2;
temp=a;a=b;
b=temp;
现在解决OP的问题:
var temp=$img.attr('src');
$img.attr('src', $imgAlt).attr('data-alt', temp);
因此,问题就像交换2个变量一样容易。您不需要if
来检查扩展程序。