Added many things I can't recall but it has to do with inventory system and some minor fixes .. it's cool
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Inventory</title>
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- partial:index.partial.html -->
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
|
||||
</head>
|
||||
<body background="180610.jpg">
|
||||
|
||||
<div class="pKofWrapper">
|
||||
<div>
|
||||
<div class=box1><h2> Inventar </h2></div>
|
||||
<div class=box2><h4 id="gewicht"> 0/45kg</h4></div>
|
||||
</div>
|
||||
<div id="invContainer">
|
||||
</div>
|
||||
<div>
|
||||
<button id='buttonbenutzen' onclick="benutzen()">Benutzen</button>
|
||||
<button id='buttonwegwerfen' onclick="wegwerfen()">Wegwerfen</button>
|
||||
<button id='Fahrzeug'>Fahrzeug</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="fahrzeugWrapper" style="display: none;">
|
||||
<div class=box1><h2> Kofferraum </h2></div>
|
||||
<div class=box2><h4 id="vehGewicht"> 0/250kg</h4></div>
|
||||
<div id="kofContainer">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="Betrag" style="display: none;">
|
||||
<input type="text" id="tf_zahl" name="number" placeholder="Betrag eingeben" min="1" step="1" oninput="this.value=this.value.replace(/[^0-9]/g,'');">
|
||||
<button id='tf_submitZahl' onclick="submitZahl()">Bestätigen</button>
|
||||
</div>
|
||||
|
||||
<script src="package://assets/js/jquery-3.3.1.min.js" type="text/javascript"></script>
|
||||
<script src="./script.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user