diff options
author | Grant Shangreaux <shshoshin@protonmail.com> | 2020-01-06 09:56:36 -0600 |
---|---|---|
committer | Grant Shangreaux <shshoshin@protonmail.com> | 2020-01-06 09:56:36 -0600 |
commit | 227113de0e779f2919f7478181faf66551ef7c94 (patch) | |
tree | 74e8e8ff39c3be7a349e050a766f8bba6a809097 /tape-deck.html | |
parent | 4556713ef0f4500974a20e649aeeb0630e6a55b2 (diff) |
Add: hardware image play/pause button
Diffstat (limited to 'tape-deck.html')
-rw-r--r-- | tape-deck.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tape-deck.html b/tape-deck.html index 8ad58f1..1747c75 100644 --- a/tape-deck.html +++ b/tape-deck.html @@ -10,9 +10,8 @@ <div class="tape-deck"> <img id="tape-deck" class="tape-deck-img" src="images/cool-deck.png"> </div> - <div class="buttons" display="flex" flex-direction="row" justify-content="center"> - <button id="playButton" onclick="play()">Play</button> - <button id="pauseButton" onclick="pause()">Pause</button> + <div class="button-container"> + <button onclick="play()"><img class="play-button" id="play-button" src="images/play-button-up.png"></button> </div> <div class="notes"> <p id="notes"></p> |