私は天井ファンのアニメーションを扱っていますし、ファンがオフとgif
画像である場合、それは上だとき、私はpng
画像を使用で2分後に動作を停止します。私のアニメーションGIFは、すべてのブラウザ
画像が正常に切り替えられ、gif
が表示され、ファンがであることがに示されます。しかし、2分後に私のgif
ファイルはすべてのブラウザで動作しなくなりました。
どうすれば解決できますか?
は、ここに私のコードです:
$(function() {
\t var hit2 = 0;
\t $('#tfanonoff').click(function() {
\t if (hit2 % 2 !== 0) {
$("#foff").fadeIn().animate({'display':'inline-block'},1000);
\t \t $("#fon").fadeOut(1000);
\t } else {
\t \t $("#foff").fadeOut().animate({'display':'none'},1000);
\t \t $("#fon").fadeIn().animate({'display':'inline-block'},1000);
}
hit2++;
return false;
\t });
});
.ceiling-fan {
max-width: 20%;
display: inline-block;
text-align: center;
left: 41%;
position: absolute;
transform: rotateX(-58deg);
}
<img id="foff" class="img-responsive ceiling-fan" src="img/fanoff.png" alt="static-img" />
<img id="fon" class="img-responsive ceiling-fan" loop=infinite src="http://animationsa2z.com/attachments/Image/fans/ventilator4.gif"
style="display:none;" />
以下からダウンロードし、それが問題を引き起こす可能性があり下さい。 – pistou
私はloop =無限を削除しましたが、私はまだ同じ問題です。 – Maulik