Skip to content

Instantly share code, notes, and snippets.

@mihailsitnic
Created October 10, 2016 11:53
Show Gist options
  • Save mihailsitnic/8ceabb778a572b8faff13a98da0fc3d3 to your computer and use it in GitHub Desktop.
Save mihailsitnic/8ceabb778a572b8faff13a98da0fc3d3 to your computer and use it in GitHub Desktop.
jQuery(".hand-top").click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#about-me").offset().top
}, 1000);
});
jQuery('a[href^="#about-me-link"]').click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#about-me").offset().top
}, 1000);
});
jQuery('a[href^="#portfolio-link"]').click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#portfolio").offset().top
}, 1000);
});
jQuery('a[href^="#contact-link"]').click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#contact").offset().top
}, 1000);
});
jQuery(".hand-bottom").click(function() {
jQuery('html, body').animate({
scrollTop: 0
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment