base
This commit is contained in:
commit
162cee6dc9
35 changed files with 1122 additions and 0 deletions
23
assets/js/onload.js
Normal file
23
assets/js/onload.js
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
window.onload = function () {
|
||||
includeHTML();
|
||||
headerShrink();
|
||||
};
|
||||
|
||||
window.onscroll = function () {
|
||||
headerShrink();
|
||||
};
|
||||
|
||||
|
||||
|
||||
function headerShrink() {
|
||||
const header = document.getElementById('site-header');
|
||||
const scrollPosition = window.scrollY || document.documentElement.scrollTop;
|
||||
|
||||
if (scrollPosition > 100) {
|
||||
header.classList.add('is-shrinked');
|
||||
} else {
|
||||
header.classList.remove('is-shrinked');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue