-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.15 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlobUI Radial Menu Demo</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #ffffff;
font-family: 'Inter', sans-serif;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
canvas {
width: 100%;
height: 100%;
display: block;
}
#error_message {
display: none;
padding: 20px;
text-align: center;
background: #cc3333;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
</style>
</head>
<body>
<div id="error_message">
This app requires WebGL2. Your browser/device appears to have WebGL2 disabled or unavailable.
</div>
<canvas id="blobui_canvas"></canvas>
<link data-trunk rel="rust" href="crates/blobui_web/Cargo.toml" />
</body>
</html>