Last active
March 12, 2020 01:53
-
-
Save nhosoya/33e4f7b272427a6988ebd1ee63fb6dcf 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
| // https://kids-km3.shogakukan.co.jp/ | |
| var event = document.createEvent("HTMLEvents"); | |
| event.initEvent("click", true, true); | |
| document.onkeydown = keydown; | |
| function keydown(e) { | |
| if (e.key === 'ArrowLeft') { | |
| document.querySelector("#tap_left_area").dispatchEvent(event); | |
| } | |
| if (e.key === 'ArrowRight') { | |
| document.querySelector("#tap_right_area").dispatchEvent(event); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment