我有以下应该在超过 1000 像素.secondLogo
时出现(通过淡入)scrollToTop
var secondLogo = $(".secondLogo");
$(window).scroll(function(){
//more then or equals to
if($(window).scrollTop() >= 1000 ){
secondLogo.fadeIn();
//less then 1000px from top
} else {
secondLogo.fadeOut();
}
});
HTML
<div class="secondLogo">
<img src="images/smm_logo_large.png" alt="Student Makers Market logo"/>
</div>
CSS
.secondLogo{
opacity:0;
position:fixed;
z-index:-10;
top: 15%;
left: 3%;
opacity:0.1;
filter:alpha(opacity=10); /* For IE8 and earlier */
}