Skip to content

Instantly share code, notes, and snippets.

@elmadah
Created May 9, 2018 13:49
Show Gist options
  • Save elmadah/f59a3a447a70552c27d8b50abe4ee3ef to your computer and use it in GitHub Desktop.
Save elmadah/f59a3a447a70552c27d8b50abe4ee3ef to your computer and use it in GitHub Desktop.
Background Parallax effect
$(window).scroll(function () {
var scrolled = $(this).scrollTop();
$("#parallax").css("background-position", "center -" + ((scrolled * 0.2)) + "px");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment