--- title: Element.scrollBy() slug: Web/API/Element/scrollBy tags: - API - CSSOM View - Element - Method - Reference - scrollBy - メソッド translation_of: Web/API/Element/scrollBy ---

{{APIRef}}

scrollBy() は {{domxref("Element")}} インターフェイスのメソッドで、指定された量だけ要素をスクロールします。

構文

element.scrollBy(x-coord, y-coord);
element.scrollBy(options)

引数

- または -

// 要素をスクロール
element.scrollBy(300, 300);

options を使用する場合:

element.scrollBy({
  top: 100,
  left: 100,
  behavior: 'smooth'
});

仕様書

仕様書 状態 備考
{{ SpecName('CSSOM View', '#dom-element-scrollby-options-options', 'element.scrollBy()') }} {{ Spec2('CSSOM View') }} 初回定義

ブラウザーの互換性

{{Compat("api.Element.scrollBy")}}