我有这个解决方案的回到顶部按钮。
HTML:
<div id='toTop'>To The Top!</div><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
CSS:
#toTop {
padding: 5px 3px;
background: #000;
color: #fff;
position: fixed;
bottom: 0;
right: 5px;
display: none;
}
JS:
$(window).scroll(function() {
if ($(this).scrollTop()) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
http://jsfiddle.net/robert/fjXSq/
它正在运作。但是,当滚动到底部200px时,我想要滚动按钮给我。如何设置此选项?
答案 0 :(得分:0)
试试这段代码:
$(window).scroll(function() {
if ($(this).scrollTop() > ($('html').height() - $(window).height() - 200)) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});