-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (62 loc) · 2.51 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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">
<title>RGB Controller</title>
<!--custom css-->
<link rel="stylesheet" href="css/main.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="card shadow p-3 bg-white rounded mt-5">
<div class="card-header">
<h5 class="text-center">ESP8266 RGB Controller</h5>
</div>
<div class="card-body">
<div class="row d-flex justify-content-center">
<div class="col-md-3">
<input class="red"
data-fgColor="#fc030f"
data-angleOffset="-125"
data-angleArc="250"
value="0"
data-max="255"
data-rotation="clockwise">
</div>
<div class="col-md-3">
<input class="green"
data-fgColor="#03fc20"
data-angleOffset="-125"
data-angleArc="250"
value="0"
data-max="255"
data-rotation="clockwise">
</div>
<div class="col-md-3">
<input class="blue"
data-fgColor="#030ffc"
data-angleOffset="-125"
data-angleArc="250"
value="0"
data-max="255"
data-rotation="clockwise">
</div>
</div>
</div>
<div class="card-footer">
<input type="text" id="selected" class="form-control"readonly>
</div>
</div>
</div>
<!--custom jquery-->
<script src="js/main.js"></script>
<!--jQuery Knob-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-Knob/1.2.13/jquery.knob.min.js"></script>
</body>
</html>