Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created June 28, 2016 07:34
Show Gist options
  • Save etoxin/44871bc324d0d7d65a7c78dc9f441fa5 to your computer and use it in GitHub Desktop.
Save etoxin/44871bc324d0d7d65a7c78dc9f441fa5 to your computer and use it in GitHub Desktop.
function parallax() {
window.onscroll = function() {
var speed = 5.0;
document.body.style.backgroundPosition = (-window.pageXOffset/speed)+"px "+(-window.pageYOffset/speed)+"px";
}
}
@etoxin
Copy link
Author

etoxin commented Jun 28, 2016

I will need to improve this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment