我在这里有一个依赖于jQuery的函数并执行以下操作:当您向下滚动页面时,完全出现在浏览器窗口中的元素将会逐渐淡入。它很有用,但问题是,如果你刷新页面,窗口中立即可见的元素(无需滚动)将不会显示,除非您稍微轻推滚动。
这是我目前的剧本:
// The unhide function
/* Every time the window is scrolled .. */
$(window).scroll( function(){
/* Look for the location of each desired element */
$('.hideme').each( function(i){
var bottom_of_object = $(this).position().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
/* If the object is completely visible in the browser window, fade it in */
if( bottom_of_window > bottom_of_object ){
$(this).animate({'opacity':'1'},800);
}
});
});
我的css
.hideme {
opacity: 0;
}
我需要在脚本中添加什么来使页面加载时立即可见的元素也淡入?