-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
109 lines (103 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta http-equiv="Widow-target" content="_top" />
<meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5)" />
<meta name="google" value="notranslate" />
<meta
name="description"
content="postprocessing effects for React and @react-three/fiber"
/>
<meta
name="keywords"
content="postprocessing,react,three,@react-three/fiber,webgl,3d"
/>
<meta name="robots" content="index,nofollow" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telphone=no, email=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="color-scheme" content="light dark" />
<title>PostProcessingEffects</title>
<style>
html,
body,
#app {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
color: white;
}
body {
background-color: #efefef;
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI',
'Helvetica Neue', Helvetica, Arial, Roboto, Ubuntu, sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.payload {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
overflow: auto;
}
.loading {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: #171717;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.loading-bar-container {
width: 100px;
height: 3px;
background: #272727;
}
.loading-bar {
height: 3px;
background: white;
}
.loading-data {
display: inline-block;
position: relative;
font-variant-numeric: tabular-nums;
margin-top: 0.8em;
color: #f0f0f0;
font-size: 0.6em;
}
</style>
<script>
(function () {
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app. postprocessing effects for
React and @react-three/fiber
postprocessing,react,three,@react-three/fiber,webgl,3d
</noscript>
<div id="app"></div>
<script type="module" src="./website/index.tsx"></script>
</body>
</html>