diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-11-30 00:45:21 -0500 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-11-30 00:45:21 -0500 |
| commit | 633432a10d46b70975661b0d91f67543ce31b9e6 (patch) | |
| tree | 582f07fb9d014b02beda27f0d179cf956183f0dd | |
| parent | 3ff8b35dd80a06752194ddfa444702be73b29274 (diff) | |
add nekolink ad in place of random images
| -rw-r--r-- | pinapelz.moe/assets/don-chan.gif | bin | 469816 -> 0 bytes | |||
| -rw-r--r-- | pinapelz.moe/assets/haruhikage.jpg | bin | 37397 -> 0 bytes | |||
| -rw-r--r-- | pinapelz.moe/assets/rg-tier.gif | bin | 0 -> 2857882 bytes | |||
| -rw-r--r-- | pinapelz.moe/assets/sayo-fries.gif | bin | 214754 -> 0 bytes | |||
| -rw-r--r-- | pinapelz.moe/assets/skill-issue.gif | bin | 5164000 -> 0 bytes | |||
| -rw-r--r-- | pinapelz.moe/index.html | 7 | ||||
| -rw-r--r-- | pinapelz.moe/scripts/index.js | 18 |
7 files changed, 3 insertions, 22 deletions
diff --git a/pinapelz.moe/assets/don-chan.gif b/pinapelz.moe/assets/don-chan.gif Binary files differdeleted file mode 100644 index 5a42cf7..0000000 --- a/pinapelz.moe/assets/don-chan.gif +++ /dev/null diff --git a/pinapelz.moe/assets/haruhikage.jpg b/pinapelz.moe/assets/haruhikage.jpg Binary files differdeleted file mode 100644 index 1ee9f09..0000000 --- a/pinapelz.moe/assets/haruhikage.jpg +++ /dev/null diff --git a/pinapelz.moe/assets/rg-tier.gif b/pinapelz.moe/assets/rg-tier.gif Binary files differnew file mode 100644 index 0000000..6735da7 --- /dev/null +++ b/pinapelz.moe/assets/rg-tier.gif diff --git a/pinapelz.moe/assets/sayo-fries.gif b/pinapelz.moe/assets/sayo-fries.gif Binary files differdeleted file mode 100644 index ad20b75..0000000 --- a/pinapelz.moe/assets/sayo-fries.gif +++ /dev/null diff --git a/pinapelz.moe/assets/skill-issue.gif b/pinapelz.moe/assets/skill-issue.gif Binary files differdeleted file mode 100644 index 7ce8fa3..0000000 --- a/pinapelz.moe/assets/skill-issue.gif +++ /dev/null diff --git a/pinapelz.moe/index.html b/pinapelz.moe/index.html index bf5aebc..3e7505d 100644 --- a/pinapelz.moe/index.html +++ b/pinapelz.moe/index.html @@ -132,8 +132,7 @@ </script> </section> <p id="quote"></p> - <div class="random-image-container"> - </div> + <iframe width="200" height="200" style="border:none" src="https://rubybulbs.net/neko.html"></iframe> </div> <div class="content"> @@ -194,8 +193,8 @@ <div id="clock" class="clock-widget"></div> <div class="general-section" style="display: flex; justify-content: space-between; align-items: center;"> <div style="width: 48%; border-right: 1px solid #000; padding-right: 10px;"> - <img src="assets/don-chan.gif" alt="Don-chan from Taiko no Tatsujin" class="border-img" style="width: 50%; height: auto; display: block; margin: 0 auto;" /> - <h3 style="text-align: center;">Rhythm Game Tierlist</h3> + <img src="assets/rg-tier.gif" alt="Grace from SDVX" class="border-img" style="width: 50%; height: auto; display: block; margin: 0 auto;" /> + <h3 style="text-align: center;"> <a href="/rhythm-games-tierlist.html">Rhythm Game Tierlist</a></h3> <p style="text-align: center;">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</p> <a href="/rhythm-games-tierlist.html" style="display: block; text-align: center;">check it out here</a> </div> diff --git a/pinapelz.moe/scripts/index.js b/pinapelz.moe/scripts/index.js index 1c1bf94..dbd7ade 100644 --- a/pinapelz.moe/scripts/index.js +++ b/pinapelz.moe/scripts/index.js @@ -125,23 +125,5 @@ 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 = `<img src="${randomImage}" alt="Random Image" class="border-img">`; - } - - displayRandomImage(); -}); - setInterval(updateClock, 1000); updateClock(); |
