Last active
August 29, 2015 14:07
-
-
Save RyoSugimoto/8cada2c92422447b7d35 to your computer and use it in GitHub Desktop.
任意の位置までスクロールする方法(絶対・相対)。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ページの上から指定した位置まで移動する | |
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