1

我正在开发一个移动网络应用程序,并且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%;
}
4

0 回答 0