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
<!--Add a html widget with this code under your section and replace the getElementById ("your ID section") with the ID of your section.--> | |
<script> | |
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 = "-90px"; | |
} |