-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.js
54 lines (47 loc) · 1.59 KB
/
main.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
45
46
47
48
49
50
51
52
53
54
/**
* some JavaScript code for this blog theme
*/
/* jshint asi:true */
/////////////////////////header////////////////////////////
/**
* clickMenu
*/
(function() {
if (window.innerWidth <= 770) {
var menuBtn = document.querySelector('#headerMenu')
var nav = document.querySelector('#headerNav')
menuBtn.onclick = function(e) {
e.stopPropagation()
if (menuBtn.classList.contains('active')) {
menuBtn.classList.remove('active')
nav.classList.remove('nav-show')
} else {
nav.classList.add('nav-show')
menuBtn.classList.add('active')
}
}
document.querySelector('body').addEventListener('click', function() {
nav.classList.remove('nav-show')
menuBtn.classList.remove('active')
})
}
}());
//////////////////////////back to top////////////////////////////
(function() {
var backToTop = document.querySelector('.back-to-top')
var backToTopA = document.querySelector('.back-to-top a')
// console.log(backToTop);
window.addEventListener('scroll',function () {
// 页面顶部滚进去的距离
var scrollTop = Math.max(document.documentElement.scrollTop, document.body.scrollTop)
if (scrollTop > 200) {
backToTop.classList.add('back-to-top-show')
} else {
backToTop.classList.remove('back-to-top-show')
}
})
// backToTopA.addEventListener('click',function (e) {
// e.preventDefault()
// window.scrollTo(0,0)
// })
}());