-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
71 lines (62 loc) · 2.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>H2</title>
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div id="video"
style="background-color: #000, position: fixed; top:0; bottom:0; left:0; right:0; z-index:10;-webkit-app-region: drag">
<h1>Hello People!</h1>
<p> Start by pasting any youtube/vimeo url. For bugs, you can create issues at github.com/poush/h2 </p>
<!-- <div class="drop-it-hot" id="drop-area">
<div class="info heading" id="heading">
<h1>Hello People!</h1>
<p> Start by pasting any youtube/vimeo url. For bugs, you can create issues at github.com/poush/h2 </p>
</div>
<div class="circle" id="circle">
<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none" />
<path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" />
</svg>
</div>
<div class="info drag" id="drag">
<p>Drag and drop file here!</p>
</div>
<form class="choose-files">
<input type="file" id="fileElem" accept="image/*" onchange="handleFiles(this.files)">
</form>
<div id="gallery"><canvas></canvas></div>
</div> -->
<!-- <div class="editor">
<div class="range-wrapper">
<label for="contrast">Contrast</label>
<input class="range" name="contrast" value="100" type="range" min="0" max="200" data-unit="%">
</div>
<div class="range-wrapper">
<label for="brightness">Brightness</label>
<input class="range" name="brightness" value="100" type="range" min="0" max="200" data-unit="%">
</div>
<div class="range-wrapper">
<label for="blur">Hue</label>
<input class="range" name="hue-rotate" value="0" type="range" min="0" max="200" data-unit="deg">
</div>
<div class="range-wrapper">
<label for="sepia">Sepia</label>
<input class="range" name="sepia" value="0" type="range" min="0" max="200" data-unit="%">
</div>
<div class="download">
<a id="downloadImage"><img src="img/download.png"></a>
</div>
</div> -->
</div>
<script src="https://player.vimeo.com/api/player.js"></script>
<!-- <script src="./dist/renderer.js"></script> -->
<script>
// You can also require other files to run in this process
require('./dist/renderer.js');
// require('./assets/js/waitForLoader.js');
</script>
</body>
</html>