我在这里看到了这个小提琴样本
想要在出现"到最高层"的时候点击!应该平滑或缓慢滚动到顶部
$(window).scroll(function() {
if ($(this).scrollTop()) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$("#toTop").click(function () {
//1 second of animation time
//html works for FFX but not Chrome
//body works for Chrome but not FFX
//This strange selector seems to work universally
$("html, body").animate({scrollTop: 0}, 1000);
});
$(window).scroll(function() {
if ($(this).scrollTop()) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$("#toTop").click(function() {
$("html, body").animate({scrollTop: 0}, 1000);
});
首先让我们创建按钮。
<a href="#" class="scrollToTop">Scroll To Top</a>
现在我们可以使用以下 CSS 设置按钮样式。
<style>
.scrollToTop{
width:100px;
height:130px;
padding:10px;
text-align:center;
background: whiteSmoke;
font-weight: bold;
color: #444;
text-decoration: none;
position:fixed;
bottom:75px;
right:40px;
display:none;
background: url('arrow_up.png') no-repeat 0px 20px;
}
.scrollToTop:hover{
text-decoration:none;
}
</style>
将以下内容复制并粘贴到 Javascript 文件中以添加 Javascript 功能。
<script>
$(document).ready(function(){
//Check to see if the window is top if not then display button
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function(){
$('html, body').animate({scrollTop : 0},800);
return false;
});
});
</script>
$(window).on("scroll",function() {
if ($(this).scrollTop() > 50 ) {
$('#toTop').fadeIn(400);
} else {
$('#toTop').fadeOut(400);
}
});
$("#toTop").on("click",function() {
$("html, body").animate({scrollTop: 0}, 1200);
});
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$('#toTop').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
现场演示、完整脚本和教程可以从这里查看 - 使用 jQuery 和 CSS 的返回顶部按钮