From 3fd40d4f1d231e0832e36138818f00b68208d461 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 9 Feb 2025 14:15:58 -0800 Subject: add tierlist link to homepage --- assets/chuni-reaction.gif | Bin 0 -> 1107200 bytes assets/don-chan.gif | Bin 0 -> 469816 bytes assets/haruhikage.jpg | Bin 0 -> 37397 bytes assets/sayo-fries.gif | Bin 0 -> 214754 bytes index.html | 47 ++-- rhythm-games-tierlist.html | 627 +++++++++++++++++++++++++++++++++++++++++++++ rhythm-games.html | 623 -------------------------------------------- scripts/index.js | 18 ++ styles/styles.css | 14 +- 9 files changed, 685 insertions(+), 644 deletions(-) create mode 100644 assets/chuni-reaction.gif create mode 100644 assets/don-chan.gif create mode 100644 assets/haruhikage.jpg create mode 100644 assets/sayo-fries.gif create mode 100644 rhythm-games-tierlist.html delete mode 100644 rhythm-games.html diff --git a/assets/chuni-reaction.gif b/assets/chuni-reaction.gif new file mode 100644 index 0000000..a660847 Binary files /dev/null and b/assets/chuni-reaction.gif differ diff --git a/assets/don-chan.gif b/assets/don-chan.gif new file mode 100644 index 0000000..5a42cf7 Binary files /dev/null and b/assets/don-chan.gif differ diff --git a/assets/haruhikage.jpg b/assets/haruhikage.jpg new file mode 100644 index 0000000..1ee9f09 Binary files /dev/null and b/assets/haruhikage.jpg differ diff --git a/assets/sayo-fries.gif b/assets/sayo-fries.gif new file mode 100644 index 0000000..ad20b75 Binary files /dev/null and b/assets/sayo-fries.gif differ diff --git a/index.html b/index.html index d915c26..a9fcd9a 100644 --- a/index.html +++ b/index.html @@ -74,11 +74,6 @@ alt="sdvx" class="random-float" /> - chuni @@ -132,6 +127,8 @@

+
+
@@ -190,6 +187,18 @@ />
+
+
+ Don-chan from Taiko no Tatsujin +

Rhythm Game Tierlist

+

my personal tierlist for rhythm games. I try to judge a series as a whole since most of them keep the same mechanics in sequels

+ check it out here +
+
+

can we just pretend there's something cool here?

+
+
+

GitHub

@@ -243,25 +252,29 @@
  • Externally archived but removed/privated VTuber songs and Covers
  • - - - +

    + pinapelz.moe / + pinapelz.com / + phase-tracker.com / + imisserinya.phase-tracker.com / + patchwork.moekyun.me / + blog.pinapelz.com / + signpost.pinapelz.com / + mojibaka.pinapelz.com / + moekyun.me / + vtuber-captcha.moekyun.me +

    + +
    + diff --git a/rhythm-games-tierlist.html b/rhythm-games-tierlist.html new file mode 100644 index 0000000..ef6d9ac --- /dev/null +++ b/rhythm-games-tierlist.html @@ -0,0 +1,627 @@ + + + + + Exported Tier List + + + + + +
    +

    My TierList

    +
    + GitHub +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + diff --git a/rhythm-games.html b/rhythm-games.html deleted file mode 100644 index 63eb6d0..0000000 --- a/rhythm-games.html +++ /dev/null @@ -1,623 +0,0 @@ - - - - - Exported Tier List - - - - - -
    -

    My TierList

    -
    - GitHub -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - diff --git a/scripts/index.js b/scripts/index.js index f258952..e3dc338 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -125,5 +125,23 @@ document.addEventListener('DOMContentLoaded', function() { setInterval(fetchNowPlaying, 60000); }); +document.addEventListener("DOMContentLoaded", () => { + const images = [ + "assets/sayo-fries.gif", + "assets/chuni-reaction.gif", + "assets/haruhikage.jpg", + ]; + + function displayRandomImage() { + const randomIndex = Math.floor(Math.random() * images.length); + const randomImage = images[randomIndex]; + + const imageContainer = document.querySelector('.random-image-container'); + imageContainer.innerHTML = `Random Image`; + } + + displayRandomImage(); +}); + setInterval(updateClock, 1000); updateClock(); \ No newline at end of file diff --git a/styles/styles.css b/styles/styles.css index 00368ec..005472e 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -389,8 +389,14 @@ blink { } } -marquee { - font-size: 1.2em; - color: #ff69b4; - margin-bottom: 10px; +.random-image-container { + display: flex; + justify-content: center; + align-items: center; } + +.random-image-container img { + max-width: 100%; + height: auto; + display: block; +} \ No newline at end of file -- cgit v1.2.3