1、HTML結構 2、css樣式 3、js效果 ...
1、HTML結構
<div class="return_top"></div>
2、css樣式
.return_top{
width: 50px;
height: 50px;
background: url(../images/lanren.gif) no-repeat center #FF8D16;
position:fixed;
right: 30px;
bottom: 30px;
display: none;
cursor: pointer;
z-index: 99;
}
3、js效果
<script> $(function(){ $(window).scroll(function(){ var topDistance=$(window).scrollTop(); //獲取滑鼠在本視窗現有狀態下移動的高度 if(topDistance>100){ //如果移動高度大於100px,頂部圖標單單顯示出,如果移動高度小於等於100,頂部圖標不顯示 $('.return_top').fadeIn(800); }else{ $('.return_top').fadeOut(800); } }); $('.return_top').on('click',function(){ $('html,body').animate({scrollTop:0},800); //必須用$('html,body')選擇,不然沒效果 }) }); </script>