我刚刚找到了一个非常有趣的解决方案,可以使用 jquery http://jsfiddle.net/tcloninger/e5qaD/在滚动时淡入内容
$(document).ready(function() {
/* Every time the window is scrolled ... */
$(window).scroll( function(){
/* Check 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 window, fade it it */
if( bottom_of_window > bottom_of_object ){
$(this).animate({'opacity':'1'},500);
}
});
});
});
唯一的问题是它不能在 iPhone (Safari) 上运行。怎样才能使这个解决方案在移动设备上运行?
先感谢您!