23 lines
652 B
HTML
23 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Flag Waver</title>
|
|
<script src="https://cdn.bootcss.com/flv.js/1.5.0/flv.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script type="text/javascript" src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="video-wrapper">
|
|
<video id="videoElement" style="text-align: center; width:100%; display:none;" controls></video>
|
|
</div>
|
|
|
|
<div class="button-wrapper">
|
|
<button id="start-cam" onclick="runVid()">Play</button>
|
|
</div>
|
|
|
|
<div class="button-wrapper">
|
|
<button onclick="wave()" id="wave">Press!</button>
|
|
</div>
|
|
</body>
|
|
</html>
|