Skip to content

Instantly share code, notes, and snippets.

@jillmugge
Last active August 29, 2015 14:00
Show Gist options
  • Save jillmugge/11182168 to your computer and use it in GitHub Desktop.
Save jillmugge/11182168 to your computer and use it in GitHub Desktop.
Add Div to Builder (outside of Container) for parallax scroll
function parallax(){
var scrolled = jQuery(window).scrollTop();
jQuery('.custom-bg').css('left', -(scrolled * 0.2) + 'px');
jQuery('.custom-bg').css('top', -(scrolled *0.3) + 'px');
}
jQuery(window).scroll(function(e){
parallax();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment