2018-2020 Pure js:
Hay una forma muy conveniente de desplazarse al elemento:
el.scrollIntoView({
behavior: 'smooth', // smooth scroll
block: 'start' // the upper border of the element will be aligned at the top of the visible part of the window of the scrollable area.
})
Pero por lo que yo entiendo, él no tiene un apoyo tan bueno como las opciones a continuación.
Aprende más sobre el método.
Si es necesario que el elemento esté en la parte superior:
const element = document.querySelector('#element')
const topPos = element.getBoundingClientRect().top + window.pageYOffset
window.scrollTo({
top: topPos, // scroll so that the element is at the top of the view
behavior: 'smooth' // smooth scroll
})
Ejemplo de demostración en Codepen
Si desea que el elemento esté en el centro:
const element = document.querySelector('#element')
const rect = element.getBoundingClientRect() // get rects(width, height, top, etc)
const viewHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
window.scroll({
top: rect.top + rect.height / 2 - viewHeight / 2,
behavior: 'smooth' // smooth scroll
});
Ejemplo de demostración en Codepen
Apoyo:
Escriben que scroll
es el mismo método que scrollTo
, pero el soporte se muestra mejor en scrollTo
.
Más sobre el método
<a href="#anchorName">link</a>