From 4556713ef0f4500974a20e649aeeb0630e6a55b2 Mon Sep 17 00:00:00 2001 From: Grant Shangreaux Date: Sun, 5 Jan 2020 15:51:39 -0600 Subject: Add: files i forgot to commit --- index.html | 13 +++++++------ tape-deck.html | 5 +++-- tape-deck.js | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 13eedb0..e14179f 100644 --- a/index.html +++ b/index.html @@ -1,23 +1,24 @@ - - + + + Tapes -
+

Still in the works, but you can listen to the music of my 2019 music journal. I intend to add writings to add to the musical/life journey of the past year. More tapes will be added to the collection over time. Enjoy! sh.sh.

-
+ diff --git a/tape-deck.html b/tape-deck.html index 2d88d9c..8ad58f1 100644 --- a/tape-deck.html +++ b/tape-deck.html @@ -2,12 +2,13 @@ + 2019 Mix Side A - Winter -
+
- +
diff --git a/tape-deck.js b/tape-deck.js index f13ea8d..04b6d2d 100644 --- a/tape-deck.js +++ b/tape-deck.js @@ -1,6 +1,6 @@ const urlParams = new URLSearchParams(window.location.search); const currentSide = urlParams.get("side"); -const tape = new Audio(`audio/2019-mix-side-${currentSide}.ogg`); +const tape = new Audio(`audio/2019-mix-side-${currentSide}.mp3`); const pressPlaySound = new Audio("audio/tape-start.mp3"); pressPlaySound.onended = (event) => { tape.play(); }; -- cgit v1.2.3