Scratch

From Things and Stuff Wiki
Revision as of 21:58, 22 March 2013 by Milk (talk | contribs)
Jump to navigation Jump to search

$(window).scroll(function () {

 if (window.innerHeight + window.pageYOffset < 1020) {
  document.getElementsByTagName('body')[0].style.backgroundAttachment = "scroll";
  document.getElementsByTagName('body')[0].style.backgroundPosition = "0% 0%"
 }
 if (window.innerHeight + window.pageYOffset > 1021) {
  if (window.backgroundExtra === undefined) { window.backgroundExtra = window.pageYOffset; }
  document.getElementsByTagName('body')[0].style.backgroundAttachment = "fixed";
  document.getElementsByTagName('body')[0].style.backgroundPosition = "0% -" + window.backgroundExtra + "px"
 }
});