-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainpage.html
29 lines (29 loc) · 944 Bytes
/
mainpage.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
<html>
<head>
<title>Cyberlight</title>
<script type='text/javascript'>
function submit() { document.getElementById('colorForm').submit(); }
</script>
<style>
h1 { text-align:center; }
input { width:99%; margin:10; }
table { width:100%; }
#R { background-color:red; }
#G { background-color:green; }
#B { background-color:blue; }
#W { background-color:#FFFFCC; }
</style>
</head>
<body>
<h1>Cyberlight</h1>
<form method='post'>
<input id='R' min='0' max='1023' type='range' name='R' value='550' onchange='submit()'/><br>
<input id='G' min='0' max='1023' type='range' name='G' value='35' onchange='submit()'/><br>
<input id='B' min='0' max='1023' type='range' name='B' value='1023' onchange='submit()'/><br>
<input id='W' min='0' max='1023' type='range' name='W' value='234' onchange='submit()'/><br>
<br>
<br>
</form>
<a href='espeasy'>Config</a>
</body>
</html>