Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/70.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
PhoneGap Jquery错误滑动_Jquery_Cordova - Fatal编程技术网

PhoneGap Jquery错误滑动

PhoneGap Jquery错误滑动,jquery,cordova,Jquery,Cordova,我用jQuery mobile为android开发了一个phonegap应用程序,最后我发现自己站在移动应用程序前面,界面很棒,页面之间的滑动非常糟糕,我尝试了所有类型的滑动“无”“弹出”。。。。但同样的结果,特别是当我按下后退按钮时,如果没有解决方案,我将不得不使用没有jquery的java应用程序 $(document).bind('pageinit', function () { $.mobile.defaultPageTransition = 'none'; }); 我使用了这段代码,

我用jQuery mobile为android开发了一个phonegap应用程序,最后我发现自己站在移动应用程序前面,界面很棒,页面之间的滑动非常糟糕,我尝试了所有类型的滑动“无”“弹出”。。。。但同样的结果,特别是当我按下后退按钮时,如果没有解决方案,我将不得不使用没有jquery的java应用程序

$(document).bind('pageinit', function () {
$.mobile.defaultPageTransition = 'none';
});
我使用了这段代码,我的幻灯片就像“Java应用程序”一样完美

我使用了这段代码,我的幻灯片非常完美,就像在“Java应用程序”中一样,我也有同样的错误:

  $(document).bind("mobileinit", function(){

// Disable transitions between pages. Android performance in transitions is very poor.
$.mobile.defaultPageTransition = 'none'; //fade o slidefade
// Gets rid of the back problem
$.mobile.pushStateEnabled = false;
  });
我犯了同样的错误:

  $(document).bind("mobileinit", function(){

// Disable transitions between pages. Android performance in transitions is very poor.
$.mobile.defaultPageTransition = 'none'; //fade o slidefade
// Gets rid of the back problem
$.mobile.pushStateEnabled = false;
  });