-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
47 lines (40 loc) · 931 Bytes
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
margin: 0;
height: 100vh;
width: 100vw;
}
bim-viewport {
border-radius: 1rem;
border: 2px solid;
}
bim-viewport[name='view-3d'] {
border-color: red;
}
bim-viewport[name='view-2d'] {
border-color: green;
}
bim-viewport[name='animation-4d'] {
border-color: purple;
}
</style>
</head>
<body>
<bim-grid style="gap: 1rem; padding: 1rem;">
<bim-viewport name="view-3d">
<bim-grid floating></bim-grid>
</bim-viewport>
<bim-viewport name="view-2d">
<bim-grid floating></bim-grid>
</bim-viewport>
<bim-viewport name="animation-4d"></bim-viewport>
</bim-grid>
<script type="module" src="./index2.ts"></script>
</body>
</html>