Last active
April 19, 2021 03:31
-
-
Save syauqi/cdde88845d87fa8375e0f19f23c91ab3 to your computer and use it in GitHub Desktop.
nav on scroll shadow and changes!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.onscroll = function () { | |
const nav = document.querySelector(".navbar"); | |
if (!nav) { | |
return false; | |
} | |
if (window.pageYOffset > 40) { | |
nav.classList.add("nav-on-scroll"); | |
} else { | |
nav.classList.remove("nav-on-scroll"); | |
} | |
}; | |
</script> | |
// put this class style on your css | |
// .nav-on-scroll { | |
// background-color: white; | |
// box-shadow: 0 0.8px 8.7px rgba(0, 0, 0, 0.004), | |
// 0 1.8px 19.5px rgba(0, 0, 0, 0.007), 0 3.1px 33.3px rgba(0, 0, 0, 0.008), | |
// 0 4.7px 51.3px rgba(0, 0, 0, 0.009), 0 7px 76px rgba(0, 0, 0, 0.011), | |
// 0 10.3px 111.7px rgba(0, 0, 0, 0.012), | |
// 0 15.4px 167.4px rgba(0, 0, 0, 0.013), | |
// 0 24.5px 266.8px rgba(0, 0, 0, 0.016), 0 46px 500px rgba(0, 0, 0, 0.02); | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment