mirror of
https://github.com/haselkern/Minecraft-ArmorStand.git
synced 2025-05-17 15:05:33 +00:00
Added armor dropdown
This commit is contained in:
parent
81e5fdd0ed
commit
a33c1ba8ba
1 changed files with 32 additions and 4 deletions
36
index.htm
36
index.htm
|
@ -114,16 +114,44 @@
|
|||
<input type="text" class="equipment" name="equipHandRight" placeholder="Item in right hand">
|
||||
<input type="text" class="equipment" id="equipHandLeft" name="equipHandLeft" placeholder="Item in left hand">
|
||||
|
||||
<input type="text" class="equipment" name="equipShoes" placeholder="Shoes">
|
||||
<input type="text" class="equipment" name="equipShoes" placeholder="Boots" list="list-shoes">
|
||||
<datalist id="list-shoes">
|
||||
<option value="chainmail_boots">
|
||||
<option value="diamond_boots">
|
||||
<option value="golden_boots">
|
||||
<option value="iron_boots">
|
||||
<option value="leather_boots">
|
||||
</datalist>
|
||||
<div class="colorfield" id="shoecolor"></div>
|
||||
|
||||
<input type="text" class="equipment" name="equipLeggings" placeholder="Leggings">
|
||||
<input type="text" class="equipment" name="equipLeggings" placeholder="Leggings" list="list-leggings">
|
||||
<datalist id="list-leggings">
|
||||
<option value="chainmail_leggings">
|
||||
<option value="diamond_leggings">
|
||||
<option value="golden_leggings">
|
||||
<option value="iron_leggings">
|
||||
<option value="leather_leggings">
|
||||
</datalist>
|
||||
<div class="colorfield" id="leggingscolor"></div>
|
||||
|
||||
<input type="text" class="equipment" name="equipChestplate" placeholder="Chestplate">
|
||||
<input type="text" class="equipment" name="equipChestplate" placeholder="Chestplate" list="list-chestplate">
|
||||
<datalist id="list-chestplate">
|
||||
<option value="chainmail_chestplate">
|
||||
<option value="diamond_chestplate">
|
||||
<option value="golden_chestplate">
|
||||
<option value="iron_chestplate">
|
||||
<option value="leather_chestplate">
|
||||
</datalist>
|
||||
<div class="colorfield" id="chestplatecolor"></div>
|
||||
|
||||
<input type="text" class="equipment" name="equipHelmet" placeholder="Helmet">
|
||||
<input type="text" class="equipment" name="equipHelmet" placeholder="Helmet" list="list-helmet">
|
||||
<datalist id="list-helmet">
|
||||
<option value="chainmail_helmet">
|
||||
<option value="diamond_helmet">
|
||||
<option value="golden_helmet">
|
||||
<option value="iron_helmet">
|
||||
<option value="leather_helmet">
|
||||
</datalist>
|
||||
<div class="colorfield" id="helmetcolor"></div>
|
||||
|
||||
<br>Helmet specifies
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue