Advertisement
Eeems

Untitled

Oct 16th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.onload = function(){
  2.     var wMenubar = document.getElementById("wMenuBar"),
  3.         wLogo = document.getElementById("wLogo");
  4.     window.onscroll = function (e){
  5.         if(window.scrollY > 50){
  6.             wMenubar.className="small";
  7.             wLogo.src = "logo-small.png";
  8.         }else{
  9.             wMenubar.className="big";
  10.             wLogo.src = "logo.png";
  11.         }
  12.     }
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement