-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (41 loc) · 1.7 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="description" content="Free and simple browser-based video editor.">
<meta name="keywords" content="WebCut, web video editor, video, video editing, free video editing, video tool, editor, open source, free">
<link rel="icon" type="image/png" href="icon.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="WebCut">
<meta property="og:url" content="https://webcut.pages.dev/">
<meta property="og:description" content="AudioMass is a free full-featured web-based audio & waveform editing tool">
<title>Jupiter WebCut</title>
</head>
<body>
<div id="background" class="full">
An error has occured! Please reload this page and make sure JavaScript is enabled. If you still see this error message, then JavaScript has not loaded.
<input type="file" id="filepicker" multiple accept="video/mp4,video/x-m4v,video/*,image/*,audio/*"/>
</div>
<div id="foreground" class="full">
<div id="cursor_preview">
<div></div>
<canvas></canvas>
</div>
<div id="canvas"></div>
<div id="layer_holder">
<div id="header">
<div onclick='upload()'>+ Media</div>
<div onclick='add_text()'>+ Text</div>
<div onclick='updateSettings()'>Settings</div>
<div id="export">Export</div>
</div>
<div id="layers"> </div>
</div>
<div id="time"></div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>