summaryrefslogtreecommitdiff
path: root/tape-deck.html
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-01-18 20:27:35 -0600
committerGrant Shangreaux <shshoshin@protonmail.com>2020-01-18 20:29:02 -0600
commit6189cfe9c5b910c10c50600da61c3e9020e20eba (patch)
treeb9d5a16bba1d7962fdd321f108828f194ec64537 /tape-deck.html
parent046a18d41b3d8d7866315ec48ab27587f735efa4 (diff)
Fix: toddler proof buttons
Diffstat (limited to 'tape-deck.html')
-rw-r--r--tape-deck.html13
1 files changed, 6 insertions, 7 deletions
diff --git a/tape-deck.html b/tape-deck.html
index f219b76..fec8fe7 100644
--- a/tape-deck.html
+++ b/tape-deck.html
@@ -11,14 +11,14 @@
<img id="tape-deck" class="tape-deck-img" src="images/cool-deck.png">
</div>
<div class="button-container">
- <button onclick="rewind()" class="touch-button">
- <img class="play-button" id="rewind-button" src="images/rewind-button-up.jpg">
+ <button onclick="rewind()" id="rewind" class="touch-button">
+ <img class="play-button" id="rewind-img" src="images/rewind-button-up.jpg">
</button>
- <button onclick="play()" class="touch-button">
- <img class="play-button" id="play-button" src="images/play-button-up.jpg">
+ <button onclick="play()" id="play" class="touch-button">
+ <img class="play-button" id="play-img" src="images/play-button-up.jpg">
</button>
- <button onclick="ff()" class="touch-button">
- <img class="play-button" id="ff-button" src="images/ff-button-up.jpg">
+ <button onclick="ff()" id="ff" class="touch-button">
+ <img class="play-button" id="ff-img" src="images/ff-button-up.jpg">
</button>
</div>
<div class="notes">
@@ -28,7 +28,6 @@
Start the tape with the play button, press it again to pause.
Fast-Forward and Rewind buttons are meant to be pressed once,
they'll advance the tape by 20s and then continue playing.
- Those buttons are fragile, so try to just press once!
Hit the reset tape button to start it from the beginning, the
website will store your current position on the tape in your
browser, so it should resume the next time you play the tape.