Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2.  
  3. $(window).scroll(function() {
  4. scrollTop = $(window).scrollTop();
  5. $('.block-project').css( 'background-position', 'center bottom ' + parseInt( (scrollTop / -2)) + 'px' );
  6. });
  7.  
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement