-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex4.html
More file actions
31 lines (31 loc) · 987 Bytes
/
Copy pathindex4.html
File metadata and controls
31 lines (31 loc) · 987 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShaderSlider</title>
<link rel="stylesheet" href="shaders-slider-style.css">
<style>
html, body { width:100%; height:100%; background:#0a0a0a; overflow:hidden }
#slider { position:relative; width:100%; height:100% }
</style>
<script type="importmap">
{ "imports": { "three": "https://cdn.jsdelivr.net/npm/three@0.167.1/build/three.module.js" } }
</script>
</head>
<body>
<div id="slider">
<div id="overlay"></div>
<div id="slide-content">
<div class="slide-label" id="lbl"></div>
<div class="slide-title" id="ttl"></div>
<div class="slide-sub" id="sub"></div>
</div>
<div class="nav" id="prev">←</div>
<div class="nav" id="next">→</div>
<div id="dots"></div>
<div id="picker"></div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>