-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 939 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 939 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<title>Tiktok Time Warp Effect</title>
</head>
<body>
<div class="canvas-area blocked" title="Allow the camera and choose a device to continue">
<canvas id="canvas"></canvas>
<canvas id="imageCanvas"></canvas>
</div>
<div class="actions">
<div class="github">
Source Code:
<a href="https://github.com/Jonorusc/" target="_blank">Github</a>
</div>
<select id="deviceList"></select>
<button id="reset-button">reset state</button>
<button id="download-button">download</button>
</div>
<script src="./effect.js"></script>
<script src="./devices.js"></script>
<script src="./script.js"></script>
</body>
</html>
<!-- REMEMBER: there are many ways to create this effect and much better ways in which I have created it. If you want to improve the code, feel free -->