Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. $('.button-widget_scroll-nav a').on('click', function(e) {
  2. $('.button-widget_scroll-nav .active').removeClass('active')
  3. $(this).addClass('active')
  4. $('button-widget_body').animate({
  5. scrollTop: $($(this).attr('href')).position().top - 100
  6. },500);
  7. e.preventDefault();
  8. })
  9.  
  10. <div class="button-widget_body">
  11. <div id="fills" class="panel fills">
  12. <h3>Fills</h3>
  13. <a href="#" class="fill fill-up">Fill Up</a>
  14. <a href="#" class="fill fill-down">Fill Down</a>
  15. <a href="#" class="fill fill-right">Fill Right</a>
  16. <a href="#" class="fill fill-left">Fill Left</a>
  17. </div>
  18. <div id="outlines" class="panel outlines">
  19. <h3>Outlines</h3>
  20. <a href="#" class="fill fill-up">Fill Up</a>
  21. <a href="#" class="fill fill-down">Fill Down</a>
  22. <a href="#" class="fill fill-left">Fill Left</a>
  23. <a href="#" class="fill fill-right">Fill Right</a>
  24. </div>
  25. <div id="pills" class="panel pills">
  26. <h3>Pills</h3>
  27. <a href="#" class="fill fill-up">Fill Up</a>
  28. <a href="#" class="fill fill-down">Fill Down</a>
  29. <a href="#" class="fill fill-left">Fill Left</a>
  30. <a href="#" class="fill fill-right">Fill Right</a>
  31. </div>
  32. <div id="slots" class="panel slots">
  33. <h3>Slots</h3>
  34. <a href="#" class="fill fill-up">Fill Up</a>
  35. <a href="#" class="fill fill-down">Fill Down</a>
  36. <a href="#" class="fill fill-left">Fill Left</a>
  37. <a href="#" class="fill fill-right">Fill Right</a>
  38. </div>
  39. <div id="circles" class="panel circles">
  40. <h3>Circles</h3>
  41. <a href="#" class="fill fill-up">Fill Up</a>
  42. <a href="#" class="fill fill-down">Fill Down</a>
  43. <a href="#" class="fill fill-left">Fill Left</a>
  44. <a href="#" class="fill fill-right">Fill Right</a>
  45. </div>
  46. </div>
  47. <div class="button-widget_scroll-nav">
  48. <a href="#fills">Fills</a>
  49. <a href="#outlines">Outlines</a>
  50. <a href="#pills">Pills</a>
  51. <a href="#slots">Slots</a>
  52. <a href="#circles">Circles</a>
  53. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement