Scroller
这个插件允许你创建一个可滚动区域。我们使用的JavaScript滚轮,除非该设备支持 - WebKit的溢出卷轴:触摸。它有许多修复Android版<3和iOS原生的滚动。
创建:
2
$(selector).scroller({})
//create
$(selector).scroller()
//get
the scroller object
属性:
Attributes
1 2 3 4 5 6 7 8 9 10 11 |
|
方法
1 2 3 4 5 6 7 8 9 10 11 |
addInfinite事件
|
事件
Events must be registered on the scroller using $.bind()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
CSS/Customize
Below is an example used by App Framework‘s iOS7 theme to customize the look and feel of the popup
1 2 3 4 5 6 7 8 9 |
|
Examples
在HTML 中添加
1 |
|
js中创建
1 2 3 4 5 |
|
调用方法
1 |
|
从缓存中获取滚动条
1 |
|
Pull to refresh
下面是如何结合事件和执行下拉刷新的例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
infinite scrolling
The following shows how to implement infinite scrolling.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
有什么问题可以联系我
官网链接:http://app-framework-software.intel.com/api.php#scroller