-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightOwnerHtml.txt
46 lines (43 loc) · 1.29 KB
/
lightOwnerHtml.txt
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
;</script>
<script src="client.js"></script>
<script src="light.js"></script>
</head>
<body>
<form>
<input type="button" name="jsButton" value="lightOn" id="lightOn" disabled/>
<input type="button" name="jsButton" value="lightOff" id="lightOff" disabled/>
</form>
<form>
<table>
<tr>
<td align="left"><b>Command :</b></td>
<td>
<input type="text" name="jsCommand" id="command" size="50"/>
</td>
<td><input type="button" name="jsComButton" value="send" id="comSend" /></td>
</tr>
<tr>
<td colspan="3"><input type="text" name="jsComRetVal" id="comRetVal" value="" size="80" disabled="disabled" /></td>
</tr>
</table>
</form>
<!--
<div class="option">
<input id="use-stun" type="checkbox"/>
<label for="use-stun">Use STUN server</label>
</div>
-->
<button id="start" onclick="start()">Start</button>
<button id="stop" style="display: none" onclick="stop()">Stop</button>
<button id="zoomIn" onclick="zoomIn()">ZoomIn</button>
<button id="zoomOut" onclick="zoomOut()">ZoomOut</button>
<div class="option">
<input id="filter" type="checkbox"/>
<label for="filter">CannyFilter</label>
</div>
<div id="media">
<video id="video" autoplay="true" playsinline="true"></video>
<audio id="audio" autoplay="true"></audio>
</div>
</body>
</html>