Skip to content

Instantly share code, notes, and snippets.

@0632347878
Created June 20, 2017 06:57
Show Gist options
  • Save 0632347878/fbcb6ece56c064014ec4697939aabba9 to your computer and use it in GitHub Desktop.
Save 0632347878/fbcb6ece56c064014ec4697939aabba9 to your computer and use it in GitHub Desktop.
$('.rocket').on('click touchend', function () {
$('html, body').animate({'scrollTop': 0}, 800, 'swing');
return false;
});
@0632347878
Copy link
Author

   $(".category").click(function() {
      $('html, body').animate({
          scrollTop: $(".categoryDn").offset().top
      }, 2000);
   });

@0632347878
Copy link
Author

$('.js-anchor').click(function () {
	$('html, body').animate({
		scrollTop: $($.attr(this, 'href')).offset().top
	}, 500);
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment