js向下滾動一段距離出現返回頂部按鈕

antzone發表於2017-04-07

很多返回頂部效果程式碼,並不是一開始就顯示返回頂部的按鈕,而是在下拉滾動一定距離之後才會顯示。

下面就通過程式碼例項介紹一下如何實現此功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
*{
  margin:0px;
  padding:0px;
}
#top_div{ 
  position:fixed; 
  bottom:80px; 
  right:0; 
  display:none; 
} 
#antzone{
  width:20px;
  height:1500px;
  margin:0px auto;
  background:green;
}
</style>
<script>
window.onscroll = function(){ 
  var t = document.documentElement.scrollTop || document.body.scrollTop; 
  var top_div = document.getElementById( "top_div" ); 
  if( t >= 300 ) { 
    top_div.style.display = "inline"; 
  } else { 
    top_div.style.display = "none"; 
  } 
} 
</script>
</head>
<body> 
<div id="top_div">
  <a href="#top">返回頂部</a>
</div>
<div id="antzone"></div>
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

(1).window.onscroll = function(){ },註冊onscroll事件處理函式,也就是當滾動滾動條的時候會觸發此事件。

(2).var t = document.documentElement.scrollTop || document.body.scrollTop,獲取向上滾動的尺寸。

(3).var top_div = document.getElementById( "top_div" ),獲取指定的元素物件。

(4).if( t >= 300 ) { 

  top_div.style.display = "inline"; 

} else { 

  top_div.style.display = "none"; 

},如果尺寸大於等於300,那麼就顯示返回頂部按鈕,否則隱藏。

二.相關閱讀:

(1).onscroll事件可以參閱javascript scroll事件一章節。

(2).document.documentElement.scrollTop || document.body.scrollTop可以參閱document.documentElement.scrollTop瀏覽器相容一章節。

相關文章