我正在使用移动网络应用,并且在UIWebView中遇到jQuery Waypoints的问题。如果用户平滑地向下滚动,它会完美地工作,但只要反弹效果太大,航路点就不会触发。
$listfooter = $('#listfooter');
opts = {
offset: function () {
return $(window).height() * 5;
}
};
$listfooter.waypoint(function(event, direction)
{
console.log('foobar');
}, opts);
<body>
<div class="header">
<span>Title</span>
</div>
<div id="container">
<div id="listview">
....
</div>
<div id="listfooter">
<div id="spinner"></div>
</div><!-- /listfooter -->
</div>
</body>
#listfooter {
float:left;
height:34px;
width:100%;
}