Guest User

Untitled

a guest
May 25th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. nav ul {
  2. margin-left: 150px }
  3.  
  4. $('header')
  5. .mouseleave(function() {
  6. $('nav ul').animate({ 'margin-left': '0px' }, 250 );
  7. })
  8. .mouseenter(function() {
  9. $('nav ul').animate({ 'margin-left': '150px' }, 250 );
  10. });
  11.  
  12. $('.main-wrapper')
  13. .mousemove(function() {
  14. $('nav ul').animate({ 'margin-left': '0px' }, 250 );
  15. });
Add Comment
Please, Sign In to add comment