From c05efa8d7ae464235cf83d7c0956e42dc6974103 Mon Sep 17 00:00:00 2001 From: julieng Date: Sat, 2 Oct 2021 17:20:14 +0200 Subject: move *.html to *.md --- files/fr/web/api/window/scrollbylines/index.md | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 files/fr/web/api/window/scrollbylines/index.md (limited to 'files/fr/web/api/window/scrollbylines/index.md') diff --git a/files/fr/web/api/window/scrollbylines/index.md b/files/fr/web/api/window/scrollbylines/index.md new file mode 100644 index 0000000000..eac61c0802 --- /dev/null +++ b/files/fr/web/api/window/scrollbylines/index.md @@ -0,0 +1,49 @@ +--- +title: Window.scrollByLines() +slug: Web/API/Window/scrollByLines +tags: + - API + - DOM + - DOM_0 + - Méthode + - Non-standard + - Window +translation_of: Web/API/Window/scrollByLines +--- +
{{ ApiRef() }}
+ +

{{Non-standard_header}}

+ +

Fait défiler le document du nombre de lignes spécifié.

+ +

Syntaxe

+ +
window.scrollByLines(lignes)
+
+ +

Paramètres

+ + + +

Exemples

+ +
<!-- Faire défiler le document de 5 lignes vers le bas. -->
+<button onclick="scrollByLines(5);">5 lignes vers le bas</button>
+
+ +
<!-- Faire défiler le document de 5 lignes vers le haut. -->
+<button onclick="scrollByLines(-5);">5 lignes vers le haut</button>
+
+ +

Spécification

+ +

Ne fait partie d'aucune spécification.

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf