Advertisement
Guest User

Untitled

a guest
May 28th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. featuresOffset = $features.offset().top
  2. featuresHeight = $features.innerHeight()
  3. featuresCenter = featuresOffset + featuresHeight / 2
  4.  
  5. windowHeight = $window.height()
  6.  
  7. $document.on 'scroll', ->
  8. scrollTop = $document.scrollTop() + windowHeight / 2
  9. if scrollTop > featuresCenter
  10. $features.css 'background-attachment', 'scroll'
  11. else
  12. $features.css 'background-attachment', ''
  13. .trigger 'scroll'
  14.  
  15.  
  16.  
  17. .scroll-logo {
  18. background: url(images/o-colored.png) 50% 50% no-repeat fixed;
  19. background-size: 30%;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement