码迷,mamicode.com
首页 > 移动开发 > 详细

手机页面滑动加载数据

时间:2017-04-25 16:44:37      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:加载   sel   win   var   数据   return   his   scrolltop   function   

var $doc, $win, bind;
$doc = $(document);

$win = $(window);

bind = function() {
return $(‘.js-scroll-load‘).each(function() {
var $self, scroll, top;
$self = $(this);
$self.removeClass(‘js-scroll-load‘);
top = $self.offset().top - 300;
$win.on(‘scroll‘, scroll = function() {
if ($doc.scrollTop() + $win.height() > top) {
$self.click();
return $win.off(‘scroll‘, scroll);
}
});
return scroll();
});
};

$(bind);

手机页面滑动加载数据

标签:加载   sel   win   var   数据   return   his   scrolltop   function   

原文地址:http://www.cnblogs.com/zslslir/p/6762690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!