啊,太让我沮丧了。我正在尝试使用简单的淡入淡出滚动到顶部脚本,但它在我的网站上不起作用,也许有冲突?
HTML:
<a href="#" class="scrollup">Scroll</a>
CSS:
.scrollup{
width: 15px;
height: 15px;
position: fixed;
top: 50px;
left: 15%;
display: none;
text-indent: -9999px;
background: url('../images/arrow.png') no-repeat;
z-index: 5000;
}
查询:
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollup').fadeIn();
} else {
$('.scrollup').fadeOut();
}
});
$('.scrollup').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
网站: http: //kaye.at/test/