2018-2020 Pure JS:
Существует очень удобный способ прокрутки до элемента:
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.
})
Но, насколько я понимаю, он не имеет такой хорошей поддержки, как варианты ниже.
Узнайте больше о методе.
Если необходимо, чтобы элемент находился сверху:
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
})
Демонстрационный пример на Codepen
Если вы хотите, чтобы элемент находился в центре:
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
});
Демонстрационный пример на Codepen
Служба поддержки:
Они пишут, что scroll
это тот же метод scrollTo
, но поддержка показывает лучше в scrollTo
.
Подробнее о методе
<a href="#anchorName">link</a>