Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. var sticky = new Waypoint.Sticky({
  2. element: $('.top-navigation')[0],
  3. offset: "-60%",
  4. handler: function(direction) {
  5. if (direction === 'down') {
  6. $('.top-navigation.stuck').css('top','-50px').animate(
  7. {
  8. 'top': '0px'
  9. }, 500);
  10. } else if (direction === 'up') {
  11. $('.top-navigation.stuck').css('top','0px').animate(
  12. {
  13. 'top': '-50px'
  14. }, 500);
  15. }
  16. }
  17. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement