Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3. $("#menu").on("click","a", function (event) {
  4. event.preventDefault();
  5. var id = $(this).attr('href'),
  6. top = $(id).offset().top;
  7. $('body,html').animate({scrollTop: top}, 1500,
  8. function(){
  9. $('.menu').removeClass('menu_state_open');
  10. });
  11. });
  12. });
  13. (function($){
  14. $(function() {
  15. $('.menu__icon').on('click', function() {
  16. $(this).closest('.menu').toggleClass('menu_state_open');
  17. });
  18. });
  19. })(jQuery);
  20.  
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement