<!--JSP寫入 回到頂部--!> <div style="overflow: hidden;position: fixed;right: 10px;bottom: 20px;z-index: 10;"> <div style="overflow: hidden;"> <div style="pa ...
<!--JSP寫入 回到頂部--!>
<div style="overflow: hidden;position: fixed;right: 10px;bottom: 20px;z-index: 10;">
<div style="overflow: hidden;">
<div style="padding-top:20px;padding-right:50px;padding-bottom:50px;">
<a href="#" style="float: right;display:none" class="btns maoDian" id="goToTop" >回到頂部</a>
</div>
</div>
</div>
<!--js寫入--!>
$(function(){
//當滾動條的位置處於距頂部100像素以下時,跳轉鏈接出現,否則消失
$(function () {
$(window).scroll(function(){
if ($(window).scrollTop()>100){
$("#goToTop").fadeIn();
}
else
{
$("#goToTop").fadeOut();
}
});
//當點擊跳轉鏈接後,回到頁面頂部位置
$('#goToTop a').click(function(){
$('html,body').animate({scrollTop:0},'slow');
});
});
})