懸浮在網頁頂部可伸縮層詳解

admin發表於2017-11-25

分享一段程式碼例項,它實現了懸浮在網頁頂部的層效果。

此層可以固定在網頁的頂部,並且具有可伸縮效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  height: 2000px;
}
.nav {
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background: #ccc;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(document).on("scroll",function(){
  if($(document).scrollTop()>100){
    $(".nav").stop().animate({
      height:'50px'
    });
  }else{
    $(".nav").stop().animate({
      height:'100px'
    });
  }
})
</script>
</head>
<body>
  <div class="nav"></div>
</body>
</html>

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

一.程式碼註釋:

[CSS] 純文字檢視 複製程式碼
body {
  height: 2000px;
}

設定高度為2000px是為了出現滾動條,便於測試效果。

[CSS] 純文字檢視 複製程式碼
.nav {
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background: #ccc;
}

設定元素的定位方式position: fixed,並且top值為0,這樣就可以將元素固定於網頁頂部。

[JavaScript] 純文字檢視 複製程式碼
$(document).on("scroll",function(){
  //code
})

註冊scroll事件,拖動滾動條就可以觸發此事件。

[JavaScript] 純文字檢視 複製程式碼
if($(document).scrollTop()>100){
  $(".nav").stop().animate({
    height:'50px'
  });
}else{
  $(".nav").stop().animate({
    height:'100px'
  });
}

當向上滾動的尺寸超過100px,那麼就以動畫方式將元素的高度設定為50px,否則就是設定為100px。

二.相關閱讀:

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

(2).scrollTop()可以參閱jQuery scrollTop()一章節。

(3).stop()可以參閱jQuery stop()一章節。

(4).animate()可以參閱jQuery animate()一章節。

相關文章