Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Last active August 29, 2015 14:07
Show Gist options
  • Save RyoSugimoto/8cada2c92422447b7d35 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/8cada2c92422447b7d35 to your computer and use it in GitHub Desktop.
任意の位置までスクロールする方法(絶対・相対)。
// ページの上から指定した位置まで移動する
scrollTo(0, 400);
document.body.scrollTop = 400;
// jQueryを使用した方法
$('html, body').scrollTop(400);
// 現在の位置から指定した距離までスクロールする
scrollBy(0, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment