Skip to content

Instantly share code, notes, and snippets.

@nhosoya
Last active March 12, 2020 01:53
Show Gist options
  • Select an option

  • Save nhosoya/33e4f7b272427a6988ebd1ee63fb6dcf to your computer and use it in GitHub Desktop.

Select an option

Save nhosoya/33e4f7b272427a6988ebd1ee63fb6dcf to your computer and use it in GitHub Desktop.
「小学館版学習まんが少年少女日本の歴史」を方向キーでページ遷移させる
// 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