Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /* Anchor Smooth Scroll's Animation */
  2. (function () {
  3. document.querySelectorAll('[href^="#"]').forEach(anchor => {
  4. anchor.addEventListener('click', function (e) {
  5. e.preventDefault();
  6.  
  7. const link = document.querySelector(this.getAttribute('href'));
  8. console.log(link);
  9. link.scrollIntoView({
  10. behavior: 'smooth'
  11. });
  12. });
  13. });
  14. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement