尝试在这里看到的jsfiddle视差图像标题:http://soworldwide.org/

时间:2012-10-20 11:47:51

标签: jquery parallax

我尝试从http://soworldwide.org/中查看网站上看到的imageheader视差效果。现在我想在开始滚动时淡出/并在大标题中。但标题消失得很厉害,只会在光滑的情况下逐渐消失......当消失时,我怎么能淡化呢?

http://jsfiddle.net/NQHmw/3/


$(window).scroll(function(){

       if($(window).scrollTop()<20){
             $('.headline').stop(true,true).fadeIn("slow");
       } else {
             $('.headline').stop(true,true).fadeOut("slow");
       }
    });

1 个答案:

答案 0 :(得分:0)

这似乎是一个2岁的问题但是stop()函数阻止了文本的淡入/淡出效果。在这里查看:

$(window).scroll(function(){
   if($(window).scrollTop()<20){
     //$('.headline').stop(true,true).fadeIn("slow");
     $('.headline').fadeIn("slow");
   } else {
     //$('.headline').stop(true,true).fadeOut("slow");
     $('.headline').fadeOut("slow");
   }
});

http://jsfiddle.net/NQHmw/60/