Skip to content

Instantly share code, notes, and snippets.

@nimaparsi
Created February 7, 2016 20:16
Show Gist options
  • Save nimaparsi/fbda8d0f7cbd6a9c9424 to your computer and use it in GitHub Desktop.
Save nimaparsi/fbda8d0f7cbd6a9c9424 to your computer and use it in GitHub Desktop.
var $window = $(window);
$window.on('scroll', function () {
var y1 = $(window).scrollTop();
var content = $('.cus_des .foreground');
var change = parseInt(y1 * -0.19, 10);
content.filter(function () {
var thisContent = $(this);
return thisContent.offset().top < (y1 + $(window).height()) && thisContent.offset().top + thisContent.height() > y1;
}).css({
'background-position': 'center ' + change + 'px'
});
}); // Ends Scroll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment