Fenêtre.scrollTo (0, 0)

Exemples de code

3
0

fenêtre.défiler

scroll function

window.scroll({
 top: 0, 
 left: 0, 
 behavior: 'smooth' 
});

window.scroll(x-coord, y-coord)
window.scroll(options)
2
0

js scrollto

element.scrollTo(x, y);
window.scrollTo(x, y);
element.scrollTo({
  top: 100,
  left: 100,
  behavior: 'smooth'
});
0
0

fenêtre.scrollTo

//scrolls to horizontal position 500
 window.scrollTo(500, 0); 
 
 //scrolls to vertical position 500
 window.scrollTo(0, 500); 
 
// scrolls to bottom of page
 window.scrollTo(0, document.body.scrollHeight); 
0
0

fenêtre.scrollto (0 0) ne fonctionne pas

const scrollToTop = () => {
  document.getElementById("scroller").scroll(0,0)
}

<button onClick={scrollToTop}>Scroll to Top</button>

Dans d'autres langues

Cette page est dans d'autres langues

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................