Role até JavaScript
scrollToTag() {
const element = document.getElementById("tagId");
element.scrollIntoView();
},
Thyago Mac
scrollToTag() {
const element = document.getElementById("tagId");
element.scrollIntoView();
},
window.scrollTo(300, 500); //X=300 and Y=500
scroll function
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
window.scroll(x-coord, y-coord)
window.scroll(options)
window.scrollTo( 0, 1000 );
// этот код меняет поведение прокрутки на "smooth"
window.scrollTo({
top: 1000,
behavior: "smooth"
});