-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 836 Bytes
/
index.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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Video Paint</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div id="container">
<video id="vid2">
<source src="pb.mp4" type="video/mp4">
</video>
<video id="vid" muted crossOrigin="anonymous">
<source src="fish.mp4" type="video/mp4">
</video>
<canvas id="canvas" width="640" height="360">
</canvas>
<canvas id="merge" width="640" height="360">
</canvas>
<canvas id="output" width="640" height="360">
Please use a Chrome for better experience. Thank you. :)
</canvas>
</div>
<p id="text">
Please draw on the video :)
</p>
</body>
</html>