Files
30-seconds-of-code/snippets/smoothScroll.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

641 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
smoothScroll browser,css,intermediate 2018-03-02T18:22:51+02:00 2020-10-22T20:24:30+03:00

Smoothly scrolls the element on which it's called into the visible area of the browser window.

  • Use Element.scrollIntoView() to scroll the element.
  • Use { behavior: 'smooth' } to scroll smoothly.
const smoothScroll = element =>
  document.querySelector(element).scrollIntoView({
    behavior: 'smooth'
  });
smoothScroll('#fooBar'); // scrolls smoothly to the element with the id fooBar
smoothScroll('.fooBar');
// scrolls smoothly to the first element with a class of fooBar