jQuery iScroll : 滚动不以内容结束
jQuery iScroll : Scroll doesn't end with content
我在起点使用 iScroll 水平滚动列表,它表现正常,但当我滚动到终点(从右到左)时,即使我的内容结束,但它会在一定程度上继续滚动。我不知道我错过了什么
Fiddle 同样是 http://jsfiddle.net/mantrig/wvypmw0g/1/
下面是我的函数初始化
function loaded () {
myScroll = new IScroll('#wrapper', { eventPassthrough: true, scrollX: true, scrollY: false, preventDefault: false });
}
#scroller {
position: absolute;
z-index: 1;
-webkit-tap-highlight-color: rgba(0,0,0,0);
width: 2400px;
...
}
你设置的宽度为2400px;
http://lab.cubiq.org/iscroll5/demos/horizontal/
此演示有效,因为它设置了 #scroller
5000px 的宽度和 50*100px li。
这不是内联样式。所以它不是 iScroll 写的 ( javascript );
但您必须自己设置 #scroller
;
我在起点使用 iScroll 水平滚动列表,它表现正常,但当我滚动到终点(从右到左)时,即使我的内容结束,但它会在一定程度上继续滚动。我不知道我错过了什么 Fiddle 同样是 http://jsfiddle.net/mantrig/wvypmw0g/1/
下面是我的函数初始化
function loaded () {
myScroll = new IScroll('#wrapper', { eventPassthrough: true, scrollX: true, scrollY: false, preventDefault: false });
}
#scroller {
position: absolute;
z-index: 1;
-webkit-tap-highlight-color: rgba(0,0,0,0);
width: 2400px;
...
}
你设置的宽度为2400px;
http://lab.cubiq.org/iscroll5/demos/horizontal/
此演示有效,因为它设置了 #scroller
5000px 的宽度和 50*100px li。
这不是内联样式。所以它不是 iScroll 写的 ( javascript );
但您必须自己设置 #scroller
;