Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.onload = function () {
- document.body.onscroll = function () {
- if(document.body.scrollTop > 55) {
- document.getElementById('header-wrapper')
- .parentNode.style.backgroundColor = "#222222";
- }
- else {
- document.getElementById('header-wrapper')
- .parentNode.style.backgroundColor = "";
- }
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement