博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery mobile 左右滑动
阅读量:5221 次
发布时间:2019-06-14

本文共 1639 字,大约阅读时间需要 5 分钟。

<div data-role="page" id="page1">

<script type="text/javascript">
$(function(){     
   $("#page1").bind("swipeleft",function(){         
     $.mobile.changePage("#page2",{transition: "slide",changeHash: true});     
    });    

  $("#page1").bind("swiperight",function(){         

      $.mobile.changePage("#page3", {transition:"slidefade",reverse:true,changeHash: true}, true, true);     
    });
});
</script>
<div data-role="header" data-position="fixed">
//头部
</div>

<div data-role="content">

//中部
</div>

<div data-role="footer" data-position="fixed">

//尾部
</div>

</div>

<div data-role="page" id="page2">

<script type="text/javascript">
$(function(){    
  $("#page2").bind("swipeleft",function(){         
    $.mobile.changePage("#page3",{transition: "slide",changeHash: true});     

  });    

    $("#page2").bind("swiperight",function(){        
          $.mobile.changePage("#page1", {transition:"slidefade",reverse:true,changeHash: true}, true, true);    
    });
});
</script>

<div data-role="header" data-position="fixed">

//头部
</div>

<div data-role="content">

//中部
</div>

<div data-role="footer" data-position="fixed">

//尾部
</div>

</div>

<div data-role="page" id="page3">

<script type="text/javascript">
$(function(){    
  $("#page3").bind("swipeleft",function(){        
    $.mobile.changePage("#page1",{transition: "slide",changeHash: true});    
  });    
  $("#page3").bind("swiperight",function(){        
    $.mobile.changePage("#page2", {transition:"slidefade",reverse:true,changeHash: true}, true, true);    
  });
});
</script>

<div data-role="header" data-position="fixed">

//头部
</div>

<div data-role="content">

//中部
</div>

<div data-role="footer" data-position="fixed">

//尾部
</div>
</div>

转载于:https://www.cnblogs.com/luoge/p/4368346.html

你可能感兴趣的文章
B2321 [BeiJing2011集训]星器 数学&&物理
查看>>
201571030319 四则运算
查看>>
RestTemplate 调用本地服务 connection refused
查看>>
.NET方向高级开发人员面试时应该事先考虑的问题
查看>>
台达PLC modbus 不支持04功能码
查看>>
python学习笔记--装饰器
查看>>
发布一个JavaScript工具类库jutil,欢迎使用,欢迎补充,欢迎挑错!
查看>>
discuz 常用脚本格式化数据
查看>>
MS CRM 2011 创建基于Fetch的报表 -- 进阶版
查看>>
洛谷P2777
查看>>
PHPStorm2017设置字体与设置浏览器访问
查看>>
SQL查询总结 - wanglei
查看>>
安装cocoa pods时出现Operation not permitted - /usr/bin/xcodeproj的问题
查看>>
makefile中使用变量
查看>>
GIT笔记:将项目发布到码云
查看>>
JavaScript:学习笔记(7)——VAR、LET、CONST三种变量声明的区别
查看>>
JavaScript 鸭子模型
查看>>
PHP典型功能与Laravel5框架开发学习笔记
查看>>
SQL Server 如何查询表定义的列和索引信息
查看>>
项目上传到github上
查看>>