diff options
Diffstat (limited to 'intimate/src/keyboard.js')
-rwxr-xr-x | intimate/src/keyboard.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/intimate/src/keyboard.js b/intimate/src/keyboard.js new file mode 100755 index 0000000..26916bb --- /dev/null +++ b/intimate/src/keyboard.js @@ -0,0 +1,11 @@ +window.onkeydown = (e) => { + console.log(e); + if (e.code === "Space") displayPause(); + if (e.code === "Enter") displayPause(); + if (e.code === "NumPadEnter") displayPause(); + + if (e.code === "ArrowLeft") skipImage(); + if (e.code === "ArrowRight") skipImage(); + if (e.code === "ArrowUp") skipImage(); + if (e.code === "ArrowDown") skipImage(); +} |