-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoverlay.html
More file actions
39 lines (38 loc) · 773 Bytes
/
Copy pathoverlay.html
File metadata and controls
39 lines (38 loc) · 773 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
32
33
34
35
36
37
38
39
<!--
Copyright (c) 2026 Christoph Medicus
Fork and explore: https://github.com/betakontext/model-viewer
Licensed under the MIT License
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Overlay</title>
<style>
body {
margin: 0; padding: 0;
font-family: sans-serif;
color: white;
background: transparent;
}
.overlay-root {
position: absolute;
top: 10px; left: 10px;
pointer-events: none;
}
.overlay-title {
font-size: 16px;
font-weight: 600;
text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
</style>
</head>
<body>
<div class="overlay-root">
<div class="overlay-title">
Gaussian Splatting &<br>
VR Model-Viewer
</div>
</div>
</body>
</html>