GWD移动动画不会停止

时间:2016-04-16 10:32:27

标签: javascript html5 mobile css-animations

我使用Google Web Designer制作了动画。这个动画在桌面上但在移动设备上工作并不起作用。实际上它有效,但当我试图停止动画时,它不会停止。移动浏览器不支持gwd.timeline.stop。

当我尝试以下代码时,no-animtion类被添加到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");
};

谢谢,

哈坎

1 个答案:

答案 0 :(得分:0)

如果您正在使用GWD,那么您可以使用时间轴动画而不是CSS动画。

以下是与如何构建时间线动画相关的文档

如果您需要更多信息,请告诉我