Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $(window).scroll(function() {
  2. if ($(this).scrollTop() >= 200) {
  3. $('#menu').addClass('ativo');
  4. }
  5. else {
  6. $('#menu').removeClass('ativo');
  7. }
  8. });
  9.  
  10. #menu{
  11. display: none;
  12. }
  13. .ativo{
  14. display: block;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement