-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.47 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="index.css">
<title>My standmaker</title>
</head>
<body>
<img id="img" src="Resources/stand_status.png" alt="" height="0" width="0">
<div class="content">
<div class="values">
<p> Power : <input type="range" name="power_slider" id="power" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<p> Speed : <input type="range" name="speed_slider" id="speed" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<p> Range : <input type="range" name="range_slider" id="range" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<p> Durability : <input type="range" name="durability_slider" id="durability" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<p> Precision : <input type="range" name="precision_slider" id="precision" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<p> Potential : <input type="range" name="potential_slider" id="potential" class="skill" value=3 min=0 max=5 oninput="SetValues()"></p>
<button onclick="RandomValues()">Random Button</button>
</div>
<canvas id ="canvasStand" height="400" width="400"></canvas>
<script src="canvasStand.js"></script>
</div>
</body>
</html>