mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-05-09 10:06:42 -07:00
add noscript to the pet me counter and make noscript on the virtual pet bigger
This commit is contained in:
parent
4ed52b0a35
commit
e20d28bc4d
4 changed files with 22 additions and 15 deletions
|
@ -9,17 +9,17 @@ embed:
|
|||
---
|
||||
|
||||
<div id="pet">
|
||||
<noscript><p>javascript is required for the pet game!!</p></noscript>
|
||||
<div id="pet-display">
|
||||
<h2 class="pet-name"></h2>
|
||||
<div class="the-pet"></div>
|
||||
<div class="status">
|
||||
<p name="hungry" class="hidden"><span class="pet-name"></span> looks hungry..</p>
|
||||
<p name="starving" class="hidden"><span class="pet-name"></span> is starving!! you need to feed them!!</p>
|
||||
<p name="unhappy" class="hidden"><span class="pet-name"></span> looks at you with wide eyes..</p>
|
||||
<p name="messy-1" class="hidden"><span class="pet-name"></span> has left a bit of a mess! time to clean!</p>
|
||||
<p name="messy-2" class="hidden">there's even more mess in here.. shouldn't you clean it for <span class="pet-name"></span>?</p>
|
||||
<p name="messy-3" class="hidden">what a mess!! <span class="pet-name"></span> can't be happy.. you've gotta clean in here</p>
|
||||
<noscript><h1>javascript is required for the pet game!!</h1></noscript>
|
||||
<div id="pet-display">
|
||||
<h2 class="pet-name"></h2>
|
||||
<div class="the-pet"></div>
|
||||
<div class="status">
|
||||
<p name="hungry" class="hidden"><span class="pet-name"></span> looks hungry..</p>
|
||||
<p name="starving" class="hidden"><span class="pet-name"></span> is starving!! you need to feed them!!</p>
|
||||
<p name="unhappy" class="hidden"><span class="pet-name"></span> looks at you with wide eyes..</p>
|
||||
<p name="messy-1" class="hidden"><span class="pet-name"></span> has left a bit of a mess! time to clean!</p>
|
||||
<p name="messy-2" class="hidden">there's even more mess in here.. shouldn't you clean it for <span class="pet-name"></span>?</p>
|
||||
<p name="messy-3" class="hidden">what a mess!! <span class="pet-name"></span> can't be happy.. you've gotta clean in here</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
: "https://cf.zyllian.workers.dev/api/pet";
|
||||
|
||||
const petCounter = document.querySelector("#pet-counter");
|
||||
const internal = petCounter.querySelector(".internal");
|
||||
const count = petCounter.querySelector(".count");
|
||||
const petButton = petCounter.querySelector("button");
|
||||
|
||||
|
@ -24,5 +25,5 @@
|
|||
}
|
||||
});
|
||||
|
||||
petCounter.style.display = "block";
|
||||
internal.style.display = "block";
|
||||
})();
|
||||
|
|
|
@ -191,8 +191,11 @@ abbr {
|
|||
}
|
||||
|
||||
#pet-counter {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 4px;
|
||||
right: 4px;
|
||||
|
||||
.internal {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,8 +36,11 @@
|
|||
</div>
|
||||
|
||||
<div id="pet-counter">
|
||||
<span class="count">???</span> pets
|
||||
<button>pet me :3</button>
|
||||
<noscript>enable js to pet me :3</noscript>
|
||||
<div class="internal">
|
||||
<span class="count">???</span> pets
|
||||
<button>pet me :3</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue