Created
September 10, 2012 21:05
-
-
Save jakiestfu/3693850 to your computer and use it in GitHub Desktop.
Background Parallax for Metro-UI-CSS
This file contains 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
var coefficient = 10; | |
$('.metro-scroll').scroll(function(e){ | |
var bgpos = Math.floor((this.scrollLeft/coefficient)*-1) + 'px 0px'; | |
$('body').css('background-position', bgpos); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks. added in demo