0
Google Web Designerでアニメーションを作成しました。このアニメーションはデスクトップでは動作しますが、モバイルでは機能しません。実際には動作しますが、アニメーションを止めようとすると止まりません。 gwd.timeline.stopはモバイルブラウザではサポートされていません。GWDモバイルアニメーションが停止しない
私は次のコードを試しても、アニメーションクラスはpage1に追加されていませんが、アニメーションは停止しません。どうすれば問題を解決できますか?
.no-animation{
-webkit-animation: none !important;
-moz-animation: none !important;
animation: none !important;
}
gwd.anim = function(event) {
$('#page1').addClass("no-animation");
console.log("stoped");
};
おかげで、
ハカン