-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
33 lines (31 loc) · 1.53 KB
/
index.htm
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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<title>Emotion Wheel</title>
<link rel="icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<h1 class="text-center">Emotion Wheel</h1>
<div id="inputDegrees" class="text-center">
<input class="bar" type="range" id="range-input" step="0.2" min="-90" max="90" value="0" list="detents"/>
<output id="range-value" >0</output><span>°</span>
<datalist id="detents">
<option rel="Green centered left" value="-70">-70</option>
<option rel="Grey centered right" value="-50">-50</option>
<option rel="Purple centered left" value="-35">-35</option>
<option rel="Center point" value="0">0</option>
<option rel="Red centered right" value="6">6</option>
<option rel="Yellow centered left" value="17">17</option>
<option rel="Gold centered right" value="65">65</option>
<option rel="Blue centered left" value="86">86</option>
</datalist>
</div>
</div>
<img id="wheel" class="img-responsive wheel" src="wheel.png" rel="Emotion Wheel"/>
<button id="feeling-lucky">🃏</button>
<script src="rotate.js"></script>
</body>
</html>