2018-2020 Murni js:
Ada cara yang sangat mudah untuk menggulir ke elemen:
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.
})
Tetapi sejauh yang saya mengerti dia tidak memiliki dukungan yang baik seperti opsi di bawah ini.
Pelajari lebih lanjut tentang metode ini.
Jika perlu, elemen ada di atas:
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
})
Contoh demonstrasi pada Codepen
Jika Anda ingin elemen berada di tengah:
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
});
Contoh demonstrasi pada Codepen
Dukung:
Mereka menulis itu scroll
adalah metode yang sama scrollTo
, tetapi dukungan menunjukkan lebih baik scrollTo
.
Lebih lanjut tentang metode ini
<a href="#anchorName">link</a>