Create debug site and link statics

This commit is contained in:
Yash Mehrotra
2021-05-25 19:22:28 +05:30
parent 395f02a96e
commit 2c4fb1956a
12 changed files with 182 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
$(window).scroll(function () {
var sc = $(window).scrollTop()
if (sc > 100) {
$(".header").addClass("small");
$(".header-nav").addClass("small");
} else {
$(".header").removeClass("small");
$(".header-nav").removeClass("small");
}
});