Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <nav class="desktop">
  2. <ul>
  3. <li><a href="/">Home</a></li>
  4. <li><a href="/cardapio">Cardápio</a></li>
  5. <li><a class="interno" href="#destaques">Destaques</a></li>
  6. <li><a class="interno" href="#galeria">Galeria</a></li>
  7. <li><a class="interno" href="#sobre">Sobre</a></li>
  8. <li><a class="interno" href="#contato">Contato</a></li>
  9. </ul>
  10. </nav>
  11.  
  12. $('.main-header .top-header nav.desktop ul li a.interno').click(function(e){
  13. e.preventDefault();
  14. var id = $(this).attr('href');
  15. targetOffset = $(id).offset().top,
  16. menuHeight = $('.main-header .top-header').innerHeight();
  17. $('html, body').animate({
  18. scrollTop: targetOffset - menuHeight
  19. }, 1000);
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement