Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.scrollBy

概要

指定された量だけウィンドウ内の文書をスクロールします。

構文

window.scrollBy(X,Y);

引数

  • X : 水平方向にスクロールさせるためのピクセル単位でのオフセット
  • Y : 垂直方向にスクロールさせるためのピクセル単位でのオフセット

正の座標は、ページを右下にスクロールさせます。負の値は、ページを左上にスクロールさせます。

// 1 ページスクロールします
window.scrollBy(0, window.innerHeight);

注記

window.scrollBy は、指定量のスクロール、 window.scroll は、文書の絶対座標へのスクロールです。 window.scrollByLineswindow.scrollByPages も参照してください。

仕様

DOM Level 0。どの標準にも属しません。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, AshfaqHossain, ethertank, Potappo
 最終更新者: AshfaqHossain,