我的页面上有 70 多个 div。
在用户滚动页面之前,我不想一次显示所有 div。我试图在我的页面上隐藏溢出的元素,当用户滚动页面时,隐藏的 div 应该再次淡入。
但是如果窗口滚动,我无法隐藏溢出的元素,也找不到任何方法来再次淡入溢出的元素。
不过我试了一下——
$(function(){
$(window).css("overflow","hidden");
var lengthy= $('.content').length;
alert(lengthy);
var scrollbottom= $(window).scrollTop()+$(window).height();
$(window).scroll(function(){
$(document).css("overflow","hidden");
if($(window).height() >scrollbottom)
{
$(document).fadeIn();
}
});
});
提琴手
如何才能做到这一点?