Line 8: | Line 8: | ||
function scrollFunction() { | function scrollFunction() { | ||
− | if (document.body.scrollTop > | + | if (document.body.scrollTop > 15 || document.documentElement.scrollTop > `5) { |
document.getElementById("navbar").style.top = "0"; | document.getElementById("navbar").style.top = "0"; | ||
} | } | ||
Line 83: | Line 83: | ||
background-color: #333; /* Black background color */ | background-color: #333; /* Black background color */ | ||
position: fixed; /* Make it stick/fixed */ | position: fixed; /* Make it stick/fixed */ | ||
− | top: | + | top: 50px; /* Hide the navbar 50 px outside of the top view */ |
width: 100%; /* Full width */ | width: 100%; /* Full width */ | ||
transition: top 0.3s; /* Transition effect when sliding down (and up) */ | transition: top 0.3s; /* Transition effect when sliding down (and up) */ |
Revision as of 12:27, 6 October 2018