当我向下滚动时,如何使页面上的元素淡入?有没有办法只使用CSS?我不懂Javascript或jQuery。
答案 0 :(得分:0)
我认为实际上有一种纯粹的css方法可以做到这一点。但它很容易使用jQuery。看看这个小提琴: http://jsfiddle.net/tcloninger/e5qad/
$(document).ready(function() {
$(window).scroll( function(){
/* Check the location of each desired element */
$('.hideme').each( function(i){
var bottom_of_object = $(this).offset().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);
}
});
});
});
创建一个CSS类以使其工作。
.hideme {
opacity: 0;
}
然后将此类应用于您想要效果的任何元素。