Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onload = function () {
  2.     document.body.onscroll = function () {
  3.         if(document.body.scrollTop > 55) {
  4.             document.getElementById('header-wrapper')
  5.             .parentNode.style.backgroundColor = "#222222";
  6.         }
  7.         else {
  8.             document.getElementById('header-wrapper')
  9.             .parentNode.style.backgroundColor = "";
  10.         }
  11.     };
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement