yindu-page
v1.0.6
Published
yindu digital third plugin
Downloads
3
Readme
使用说明文档
Page.js 页面布局类
| 属性 | 名称 | 默认值 | 是否必须 |
| --------- |:--------------- |:-------------|:-------------|
| pages | 需要切换的所有屏 | $('.page') | 否 |
| direction | 切换方向 :vertical 或 v 为上下滑动,horizontal 或 h 为左右滑动 | vertical; | 否 |
| currentClass | 当前屏的class (方便实现内容的进场动画) | current | 否 |
| rememberLastVisited | 记住上一次访问结束后的索引值,可用于实现页面返回后是否回到上次访问的页面 | true | 否 |
| animationPlayOnce | 切换页面时,动画只执行一次 | function(){} | 否 |
| oninit | 初始化完成时的回调 | function(){} | 否 |
| onbeforechange | 开始切换前的回调 | function(){} | 否 |
| onchange | 每一屏切换完成时的回调 | function(){} | 否 |
| onSwipeUp | swipeUp 回调 | function(){} | 否 |
| onSwipeDown | swipeDown 回调 | function(){} | 否 |
| onSwipeLeft | swipeLeft 回调 | function(){} | 否 |
| onSwipeRight | swipeRight 回调 | function(){} | 否 |
| 方法 | 名称 | 参数 | 示例 |
| --------- |:--------------- |:-------------|:-------------|
| next() | 切换到下一屏 | index:指定播放位置 | |
| prev() | 返回上一屏 | | |
| moveTo(index[,isEase]) | 跳到指定位置 | index:跳到指定位置:isEase:是否需耀动画 默认:false需要动画 不需要动画:true | |