summaryrefslogtreecommitdiff
path: root/tape-deck.html
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-01-12 23:19:28 -0600
committerGrant Shangreaux <shshoshin@protonmail.com>2020-01-12 23:19:28 -0600
commita9a1509405804be9f329a4168515a607b1bbea1e (patch)
tree23f50719bf82563646ba387b253a15ac8ae1ddad /tape-deck.html
parent70fb6d7c519d1a81afcc6cbe5aeb6f3b6850e3e6 (diff)
Feature: resume playback from local storage of current tape time
Diffstat (limited to 'tape-deck.html')
-rw-r--r--tape-deck.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/tape-deck.html b/tape-deck.html
index 21eeda2..1366fe5 100644
--- a/tape-deck.html
+++ b/tape-deck.html
@@ -11,11 +11,14 @@
<img id="tape-deck" class="tape-deck-img" src="images/cool-deck.png">
</div>
<div class="button-container">
- <button onclick="play()"><img class="play-button" id="play-button" src="images/play-button-up.png"></button>
+ <button onclick="play()" class="touch-button">
+ <img class="play-button" id="play-button" src="images/play-button-up.png">
+ </button>
</div>
<div class="notes">
<p id="notes"></p>
</div>
+ <button onclick="reset()"> reset tape </button>
</div>
<script src="tape-deck.js"></script>
</body>