clean template files
This commit is contained in:
40
CLEAN/assets/js/script.js
Normal file
40
CLEAN/assets/js/script.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/* ===============================================
|
||||
Hide navbar on scrolldown, show on scrollup.
|
||||
=============================================== */
|
||||
var prevScrollpos = window.pageYOffset;
|
||||
window.onscroll = function() {
|
||||
var currentScrollPos = window.pageYOffset;
|
||||
if (prevScrollpos > currentScrollPos) {
|
||||
document.getElementById("navbar").style.top = "0";
|
||||
} else {
|
||||
document.getElementById("navbar").style.top = "-322px";
|
||||
}
|
||||
prevScrollpos = currentScrollPos;
|
||||
}
|
||||
|
||||
/* ===============================================
|
||||
Drop list on click, dropdownbtn (cur. links).
|
||||
=============================================== */
|
||||
function DropFunc() {
|
||||
document.getElementById("DropList").classList.toggle("show");
|
||||
}
|
||||
window.onclick = function(e) {
|
||||
if (!e.target.matches('.dropbtn')) {
|
||||
var DropList = document.getElementById("DropList");
|
||||
if (DropList.classList.contains('show')) {
|
||||
DropList.classList.remove('show');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ===============================================
|
||||
Drop & show mobile menu links.
|
||||
=============================================== */
|
||||
function BurgMenFunc() {
|
||||
var x = document.getElementById("navlinks");
|
||||
if (x.style.display === "block") {
|
||||
x.style.display = "none";
|
||||
} else {
|
||||
x.style.display = "block";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user