aboutsummaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
authorfloppydiskette <git@diskfloppy.me>2024-08-08 02:00:44 +0100
committerfloppydiskette <git@diskfloppy.me>2024-08-08 02:00:44 +0100
commite3f67fec07884b70e2a988ac0bb8cf6c9a750582 (patch)
tree280593edcd53a8789b4330e8aac708f1a34e3659 /public/js
parent9900446d9590024c34f55a45055776a396fb694e (diff)
Initial redesign commit
Diffstat (limited to 'public/js')
-rw-r--r--public/js/liveClock.js10
-rw-r--r--public/js/randomQuote.js69
2 files changed, 79 insertions, 0 deletions
diff --git a/public/js/liveClock.js b/public/js/liveClock.js
new file mode 100644
index 0000000..07c9eae
--- /dev/null
+++ b/public/js/liveClock.js
@@ -0,0 +1,10 @@
+function time() {
+ var span = document.getElementById("clock");
+ var d = new Date();
+ var s = d.getSeconds();
+ var m = d.getMinutes();
+ var h = d.getHours();
+ span.textContent =
+ ("0" + h).substr(-2) + ":" + ("0" + m).substr(-2) + ":" + ("0" + s).substr(-2);
+}
+setInterval(time, 1000);
diff --git a/public/js/randomQuote.js b/public/js/randomQuote.js
new file mode 100644
index 0000000..7fbbc8a
--- /dev/null
+++ b/public/js/randomQuote.js
@@ -0,0 +1,69 @@
+const quotes = [
+ {
+ "quote": "KING: \"Mmm? Oh, yeah. No.\"",
+ "attribution": "The Owl House, S1E05"
+ },
+ {
+ "quote": "KING: \"I'm stealing everything that's not nailed down!\"",
+ "attribution": "The Owl House, S1E06"
+ },
+ {
+ "quote": "EDA: \"Ahh sure. Spare us.\"<br>" +
+ "LILITH: \"Woe to us whose fates are sealed.\"",
+ "attribution": "The Owl House, S1E11"
+ },
+ {
+ "quote": "EDA: \"Hey freeloaders! Guess what today is!\"",
+ "attribution": "The Owl House, S1E12"
+ },
+ {
+ "quote": "EDA: \"Quitting! It's like trying, but easier!\"",
+ "attribution": "The Owl House, S1E13"
+ },
+ {
+ "quote": "KING: \"Can it, fangs! You don't know diddly-dang about squiddly-squat!\"",
+ "attribution": "The Owl House, S1E13"
+ },
+ {
+ "quote": "KING: \"Holy bones, you poofed it! Call the cops, this guy's crazy!\"",
+ "attribution": "The Owl House, S1E14"
+ },
+ {
+ "quote": "EDA: \"There is one way, but it's terribly dangerous and partially illegal.\"",
+ "attribution": "The Owl House, S1E15"
+ },
+ {
+ "quote": "GUS CLONE: \"I'd rather die than expose my secrets!\"<br>" +
+ "GUS: \"Then die, you shall!\"",
+ "attribution": "The Owl House, S1E15"
+ },
+ {
+ "quote": "LUZ: \"Vee, you're giving up too quick!\"<br>" +
+ "VEE: \"I'm being realistic.\"",
+ "attribution": "The Owl House, S2E10"
+ },
+ {
+ "quote": "LUZ: \"I have questions about that name...\"<br>" +
+ "LILITH: \"And I have questions about my life!\"",
+ "attribution": "The Owl House, S2E12"
+ },
+ {
+ "quote": "EMIRA: \"We can shout as loud as we want, but money always shouts louder.\"",
+ "attribution": "The Owl House, S2E20"
+ },
+ {
+ "quote": "VEE: \"Uhh, no, I'm new in town, I just have one of those faces! But, ju-just one, the normal amount of face.\"",
+ "attribution": "The Owl House, S3E01"
+ },
+ {
+ "quote": "RAINE: \"You Know I Hate These Things. Talking To People. Waving To People. People.\"",
+ "attribution": "The Owl House, S2E11"
+ }
+];
+
+const randomIndex = Math.floor(Math.random() * quotes.length);
+const quote = quotes[randomIndex];
+
+// Use document.write to output the random string
+document.write(`${quote.quote}<br><small>(${quote.attribution})</small>`);
+