Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # Fixed header
  2. headerHeight = $( '.header' ).outerHeight()
  3.  
  4. $(window).scroll ->
  5. if $(this).scrollTop() >= headerHeight
  6. $( '.main-navigation' ).addClass 'is-fixed'
  7. $( 'body' ).addClass 'has-fixed-nav'
  8. else
  9. $( '.main-navigation' ).removeClass 'is-fixed'
  10. $( 'body' ).removeClass 'has-fixed-nav'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement