数秒 read (About 97 words)
jsで特定要素をスクロールする方法
表題の通りです。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| const hoge = window.document.getElementsByClassName('hoge')[0]
const now_x = hoge.scrollLeft console.log('now_x: ' + now_x)
hoge.scrollTo(now_x + 100, 0)
const window_x = window.parent.screen.width console.log('window_x: ' + window_x)
|