Created
May 9, 2018 13:49
-
-
Save elmadah/f59a3a447a70552c27d8b50abe4ee3ef to your computer and use it in GitHub Desktop.
Background Parallax effect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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