Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //Anchor
  2. $(document).ready(function() {
  3. $("a.anchor").click(function() {
  4. $("html, body").animate({
  5. scrollTop: $($(this).attr("href")).offset().top + "px"
  6. }, {
  7. duration: 500,
  8. easing: "swing"
  9. });
  10. return false;
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement