26 lines
746 B
HTML
Executable File
26 lines
746 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="webrtc.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div>Video<label class="switch"><input onclick="toggle('video', this)" type="checkbox"><span class="slider round"></span></label></div>
|
|
<div>Audio<label class="switch"><input onclick="toggle('audio', this)" type="checkbox"><span class="slider round"></span></label></div>
|
|
|
|
<video id="preview" autoplay muted ></video>
|
|
<div id="remote"></div>
|
|
<br />
|
|
<input type="button" id="start" onclick="start(true)" value="Start Video"></input>
|
|
|
|
<div id="log"></div>
|
|
</body>
|
|
|
|
<footer>
|
|
<script type="text/javascript">
|
|
pageReady();
|
|
</script>
|
|
</footer>
|
|
</html>
|