jquery實現(xiàn)頁面常用的返回頂部效果
更新時間:2016年03月04日 10:05:01 投稿:lijiao
這篇文章主要為大家詳細介紹了jquery實現(xiàn)頁面常用的返回頂部效果代碼,感興趣的小伙伴們可以參考一下
本文實例為大家分享了jquery實現(xiàn)返回頂部效果的全部代碼,供大家參考,具體內(nèi)容如下
效果圖:

實現(xiàn)代碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>返回頂部</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.wrap{
height: 2000px;
}
.gotop{
display: block;
width: 32px;
height: 32px;
background-color: red;
text-align: center;
text-decoration: none;
font-size: 14px;
font-weight: bold;
color: white;
line-height: 32px;
position: fixed;
right:50px;
bottom:50px;
opacity: 0;
/*top: 500px;*/
}
</style>
</head>
<body>
<div class="wrap">
<a href="###" class="gotop">TOP</a>
</div>
<script type="text/javascript" src="jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(function(){
// 當滾動條滾動大于200時出現(xiàn),未大于,消失
$(window).scroll(function(){
if($(document).scrollTop()<200){
// alert("kk");
$(".gotop").stop().animate({
opacity: 0
},1000)
}
else{
$(".gotop").show().stop().animate({
opacity: 1
},1000)
}
})
// 返回頂部
$(".gotop").on("click",function(){
$("html body").animate({
scrollTop:0
},1000)
})
})
</script>
</body>
</html>
希望本文所述對大家學習javascript程序設計有所幫助。
相關文章
jQuery插件學習教程之SlidesJs輪播+Validation驗證
這篇文章主要介紹了jQuery插件學習教程之SlidesJs輪播+Validation驗證的相關資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-07-07
jQuery實現(xiàn)點擊彈出背景變暗遮罩效果實例代碼
這篇文章主要介紹了jQuery實現(xiàn)點擊彈出背景變暗遮罩效果的相關資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-06-06
使用jQuery設置disabled屬性與移除disabled屬性
Readonly只針對input和textarea有效,而disabled對于所有的表單元素都有效,下面為大家介紹下使用jQuery設置disabled屬性2014-08-08
jQuery+canvas實現(xiàn)簡單的球體斜拋及顏色動態(tài)變換效果
這篇文章主要介紹了jQuery+canvas實現(xiàn)簡單的球體斜拋及顏色動態(tài)變換效果,通過jQuery+html5的canvas利用時間函數(shù)進行實時數(shù)學運算動態(tài)繪制拋物線圖形的技巧,需要的朋友可以參考下2016-01-01

