entropy/public/index.html

36 lines
715 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<!--
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
-->
<script src="webrtc.js"></script>
<style>
video {
width: 100%;
width: 100%;
max-width: 400px;
min-width: 400px;
border: 1px solid black;
display: inline-block;
}
</style>
</head>
<body>
<video id="localVideo" autoplay muted ></video>
<video id="remoteVideo" autoplay ></video>
<br />
<input type="button" id="start" onclick="start(true)" value="Start Video"></input>
<script type="text/javascript">
pageReady();
</script>
<div id="log">
</div>
</body>
</html>