-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagic-scroll.js
44 lines (34 loc) · 1.2 KB
/
magic-scroll.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//scroll anchor links fixed
var switchView = function (hash = location.hash, adjust = 5) {
/* change adjust value if necessary*/
/* Remember to import https://unpkg.com/smoothscroll-polyfill/dist/smoothscroll.min.js for cross-browser support*/
//get top position relative to viewport
try {
var elem = document.querySelector(hash);
var elemRect = elem.getBoundingClientRect(),
bodyRect = document.body.getBoundingClientRect(),
offset = elemRect.top - bodyRect.top;
window.scroll({
top: offset - adjust,
behavior: 'smooth'
})
} catch (DOMException) {
location.hash = "";
}
}
document.addEventListener('DOMContentLoaded', () => { switchView() });
window.onhashchange = () => { switchView() }
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.onclick = (e) => {
//be sure the target is right
//prevent <button> inside <a> case
var target = e.target;
while ( target.nodeName.toLowerCase() != "a" ) {
target = target.parentNode
}
e.preventDefault()
switchView(target.attributes.href.value)
//auto close navbar
$('.navbar-collapse').collapse('hide')
}
})