-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (66 loc) · 2.89 KB
/
Copy pathindex.html
File metadata and controls
70 lines (66 loc) · 2.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" sizes="192x192" href="/favicon-192x192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="2spoopy4u streams"
/>
<link rel="apple-touch-icon" href="/favicon-192x192.png" />
<link rel="manifest" href="/manifest.json" />
<title>Dinsdagavond</title>
<script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script>
window['__onGCastApiAvailable'] = function(isAvailable) {window.__gcastAvailable = isAvailable;};
</script>
<script src="//www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div style="position: absolute; top: -9999; z-index: 0; visibility: hidden;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg-root" width="381" height="166" z-index="-1">
<defs>
<filter id="chromatic-aberration">
<!-- Red channel shift right 2px and blurred 2px -->
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"
/>
<feOffset dx="2" dy="0" />
<feGaussianBlur stdDeviation="2" color-interpolation-filters="sRGB" result="redChannel" />
<!-- Green channel left in place with a small 0.5px blur -->
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0"
/>
<feGaussianBlur stdDeviation="0.5" color-interpolation-filters="sRGB" result="greenChannel" />
<!-- Red channel shift left 2px and blurred 2px -->
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0"
/>
<feOffset dx="8" dy="0" />
<feGaussianBlur stdDeviation="2" color-interpolation-filters="sRGB" result="blueChannel" />
<!-- Put the channels back together with the screen blend mode -->
<feBlend
in="redChannel"
in2="greenChannel"
mode="screen"
result="redGreen"
color-interpolation-filters="sRGB"
/>
<feBlend in="redGreen" in2="blueChannel" mode="screen" color-interpolation-filters="sRGB" />
</filter>
</defs>
</svg>
</div>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>