Skip to content

Instantly share code, notes, and snippets.

@4aficiona2
Last active August 29, 2015 14:01
Show Gist options
  • Save 4aficiona2/0d0aefd70c625444db24 to your computer and use it in GitHub Desktop.
Save 4aficiona2/0d0aefd70c625444db24 to your computer and use it in GitHub Desktop.
Parallaxed / delayed Element
/* parallaxed-element.js
* Parallaxed / delayed element
*/
$(document).ready(function(){
$(document).scroll(function(){
var distanceToTop = $(document).scrollTop();
$('.parallaxed').css('margin-top', (distanceToTop/10)*9);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment