Advertisement
Eeems

Untitled

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