我尝试对http://soworldwide.org/网站上看到的 imageheader 视差效果进行 jsfiddle 处理。现在我想在开始滚动时淡出/并在大标题中。但是标题很难消失,只会平滑地淡出……我怎么能在消失时也淡出它?
$(window).scroll(function(){
if($(window).scrollTop()<20){
$('.headline').stop(true,true).fadeIn("slow");
} else {
$('.headline').stop(true,true).fadeOut("slow");
}
});