2020-12-30 18:11:46 +08:00
|
|
|
KEEP.initHeaderShrink = () => {
|
2020-11-20 12:02:22 +08:00
|
|
|
KEEP.utils.headerShrink = {
|
2020-10-21 19:36:38 +08:00
|
|
|
headerDom: document.querySelector('.header-wrapper'),
|
|
|
|
isHeaderShrink: false,
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this.headerHeight = this.headerDom.getBoundingClientRect().height;
|
|
|
|
},
|
|
|
|
|
|
|
|
headerShrink() {
|
|
|
|
const scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
|
|
|
|
|
|
|
|
if (!this.isHeaderShrink && scrollTop > this.headerHeight) {
|
|
|
|
this.isHeaderShrink = true;
|
2021-01-05 11:48:58 +08:00
|
|
|
document.body.classList.add('header-shrink');
|
2020-10-21 19:36:38 +08:00
|
|
|
} else if (this.isHeaderShrink && scrollTop <= this.headerHeight) {
|
|
|
|
this.isHeaderShrink = false;
|
2021-01-05 11:48:58 +08:00
|
|
|
document.body.classList.remove('header-shrink');
|
2020-10-21 19:36:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
initMenuBarButton() {
|
2020-11-25 16:54:44 +08:00
|
|
|
document.querySelector('.menu-bar').addEventListener('click', () => {
|
2021-01-05 11:48:58 +08:00
|
|
|
document.body.classList.toggle('header-drawer-show');
|
2020-10-21 19:36:38 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
initWindowMask() {
|
2020-11-25 16:54:44 +08:00
|
|
|
document.querySelector('.window-mask').addEventListener('click', () => {
|
2021-01-05 11:48:58 +08:00
|
|
|
document.body.classList.toggle('header-drawer-show');
|
2020-10-21 19:36:38 +08:00
|
|
|
});
|
|
|
|
},
|
2020-09-11 15:06:38 +08:00
|
|
|
}
|
2020-11-20 12:02:22 +08:00
|
|
|
KEEP.utils.headerShrink.init();
|
|
|
|
KEEP.utils.headerShrink.initMenuBarButton();
|
|
|
|
KEEP.utils.headerShrink.initWindowMask();
|
2020-12-30 18:11:46 +08:00
|
|
|
}
|