jquery mobile 1.2.0空白屏幕,镀铬版本43.0.2357.81

时间:2015-06-04 12:24:30

标签: google-chrome jquery-mobile

jquery mobile 1.2.0版空白屏幕,同时在Chrome版本43.0.2357.81 m中滑动。在其他浏览器中确定。

1 个答案:

答案 0 :(得分:3)

已经有了答案。

从这里查看我的答案 Animation end webkitend bug

最好转到最新版本。

修改

要修复 - 只需在加载jquerymobile.js之前添加一些地方 -

// Override of $.fn.animationComplete must be called before initialise jquery mobile js
   $(document).bind('mobileinit', function() {
     $.fn.animationComplete = function(callback) {
       if ($.support.cssTransitions) {
         var superfy= "WebKitTransitionEvent" in window ? "webkitAnimationEnd" : "animationend";
         return $(this).one(superfy, callback);
       } else {

         setTimeout(callback, 0);
         return $(this);
       }
     };

   })