-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (53 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>VizraVid | MIX THOSE VIDS</title>
</head>
<style type="text/css">
:root {
--blur: 0px;
--bright: 1;
--contrast: 1;
--gray: 0%;
--hue: 0deg;
--invert: 0%;
--sepia: 0%;
--zoom: 1;
--transX: 0vw;
--transY: 0vh;
--rotate: 0turn;
--fadeCol: black;
--fadeOp: 0;
}
html, body, div, video {margin: 0px; padding: 0px;}
#screen {
background: #333;
width: 100vw; height: 100vh;
overflow: hidden;
display: grid;
grid-template-areas: "video";
}
video, #fade {
width: 100%; height: 100%;
object-fit: cover; grid-area: video;
}
video {
filter:
blur(var(--blur))
brightness(var(--bright)) contrast(var(--bright))
grayscale(var(--gray)) sepia(var(--sepia))
hue-rotate(var(--hue)) invert(var(--invert))
;
transform: scale(var(--zoom)) translateX(var(--transX)) translateY(var(--transY)) rotate(var(--rotate));
}
#fade {background-color: var(--fadeCol); opacity: var(--fadeOp);}
</style>
<body>
<div id="screen">
<video id="vidOne" loop autoplay></video>
<video id="vidTwo" loop autoplay></video>
<div id="fade"></div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>