Version 2.9
* Custom input for answer * Option for no timer * Play again button * Rewrite About page * Modernize clipboard copy * Lots of misc. fixes
This commit is contained in:
23
index.html
23
index.html
@ -31,13 +31,13 @@
|
||||
<div id="container">
|
||||
<div id="game">
|
||||
<img src="pokemon/R58.png" alt="Growlithe" class="poketest-companion" />
|
||||
<h1>What is Pokétest?</h1>
|
||||
<h1>Pokétest</h1>
|
||||
|
||||
<p>✨ <strong>Now updated for Pokémon Legends: Arceus!</strong></p>
|
||||
|
||||
<p>There are now more than 900 Pocket Monsters, and a handful number of alternative forms. It's getting pretty tricky to know them all, let alone to catch them all. With Pokétest, you can train yourself and become unbeatable! Filter by generation, language and even by Mega Evolutions, Regional or Gigantamax Forms!</p>
|
||||
|
||||
<p>You can play with your keyboard: just press 1, 2, 3 or 4 to choose the answer!</p>
|
||||
<p>For more details, please read the <a href="about.html">About page</a>!</p>
|
||||
|
||||
<div id="configuration">
|
||||
<h2>Configuration</h2>
|
||||
@ -104,6 +104,10 @@
|
||||
<option name="lang" id="cn" value="cn">繁體中文</option>
|
||||
<option name="lang" id="cs" value="cs">简体中文</option>
|
||||
</select>
|
||||
|
||||
<h3>Answer type</h3>
|
||||
<input type="radio" name="answertype" class="first" id="choice" checked><label for="choice"> Choice</label>
|
||||
<input type="radio" name="answertype" id="input"><label for="input"> Input</label>
|
||||
</div>
|
||||
<div id="right_config">
|
||||
<h3>Silhouette</h3>
|
||||
@ -124,13 +128,14 @@
|
||||
<h3>Time to answer</h3>
|
||||
<select class="time first">
|
||||
<!--<option name="time" id="1" value="1">1 (debug)</option>-->
|
||||
<option name="time" id="2" value="2">2</option>
|
||||
<option name="time" id="5" value="5" selected>5</option>
|
||||
<option name="time" id="10" value="10">10</option>
|
||||
<option name="time" id="30" value="30">30</option>
|
||||
<option name="time" id="99" value="99">99</option>
|
||||
<option name="time" id="2" value="2">2 seconds</option>
|
||||
<option name="time" id="5" value="5" selected>5 seconds</option>
|
||||
<option name="time" id="10" value="10">10 seconds</option>
|
||||
<option name="time" id="30" value="30">30 seconds</option>
|
||||
<option name="time" id="99" value="99">99 seconds</option>
|
||||
<option name="time" id="notimer" value="notimer">No timer</option>
|
||||
<!--<option name="time" id="10000" value="10000">10000 (debug)</option>-->
|
||||
</select> seconds
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -141,7 +146,7 @@
|
||||
</div>
|
||||
</article>
|
||||
<footer>
|
||||
<p>© 2012 - 2022 Pokétest 2.8</p>
|
||||
<p>© 2012 - 2022 Pokétest 2.9</p>
|
||||
</footer>
|
||||
</div>
|
||||
<script>
|
||||
|
Reference in New Issue
Block a user