Html-一頁式網頁使用href滑頁
原理
實作
- menu中的item使用
<a>
標籤,並將href設定為目標section的#id1
2
3
4
5
6
7
8
9
10
11<ul class="navbar-nav">
<li>
<a href="#section1">item 1</a>
</li>
<li>
<a href="#section2">item 2</a>
</li>
<li>
<a href="#section3" >item 3</a>
</li>
</ul>
1 | <div id="section1"></div> |
在
body
標籤中新增id1
<body data-spy="scroll" data-target="#main-nav" id="home">
用jQuery初始化scrollspy
1 | $('body').scrollspy({ target:'#mail-nav'}); |
- 添加Smooth Scrolling
- 所有在#main-nav中的
<a>
被click,就會執行函式1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17$('#main-nav a').on('click',function(event){
<!--check for a hash value -->
if(this.hash !==""){
<!-- prevent default behavior -->
event.preventDefault();
<!-- Store hash -->
const hash = this.hash;
$('html,body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
<!-- Add hush to URL after scroll -->
window.location.hash = hash;
})
}
})
- 所有在#main-nav中的