en.javascript.info icon indicating copy to clipboard operation
en.javascript.info copied to clipboard

Added information about smooth scrolling (`options` object)

Open Alexandre887 opened this issue 2 years ago • 0 comments

Window sizes and scrolling

The article is missing information regarding the optional options object, which can be used in scrollTo/scrollBy/scrollIntoView methods, for example, to make scrolling smooth:

window.scrollBy({
  top: 500,
  left: 0,
  behavior: "smooth" // smooth page scrolling animation
});

Alexandre887 avatar Aug 19 '23 22:08 Alexandre887