我正在努力让我的 scrollTo Top 工作。
这是我的按钮的css代码:
.scrollTop {
background: none repeat scroll 0 0 #959595;
bottom: 10%;
position: fixed;
right: 10px;
z-index: 999;
display:none;
}
.scrollTop a{
background:url(../images/to-top.png) no-repeat center center #959595;
display: block;
padding: 10px;
height: 32px;
width: 32px;
text-indent:-9999px;
}
.scrollTop a:hover{
background-color:#e00a16;
}
这是执行该功能的jQuery:
$(window).bind('scroll', function(){
if ($(this).scrollTop() > 100) { $('.scrollTop').fadeIn(); } else { $('.scrollTop').fadeOut(); }
});
$('.scrollTop').click(function(e){
e.stopPropagation();
$('body,html').animate({scrollTop: 0}, 800);
return false;
});
它根本没有出现,几乎就像css样式没有拾取图像一样,但它是正确链接的。我在这里的论坛上尝试过建议,但似乎没有一个有效。这都是在wordpress中完成的。
欢迎大家提出意见。