-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 1.9 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
<head>
<title>CryptoTrex 🦖 - Voxel Viewer</title>
<meta name="title" content="CryptoTrex 🦖" />
<meta
name="description"
content="The dinosaurs are back! (in the metaverse)"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cryptotrexnft.com/" />
<meta property="og:title" content="CryptoTrex 🦖 - Voxel Viewer" />
<meta
property="og:description"
content="The dinosaurs are back! (in the metaverse)"
/>
<meta
property="og:image"
content="https://cryptotrexnft.com/img/meta-banner.jpeg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://cryptotrexnft.com/" />
<meta property="twitter:title" content="CryptoTrex 🦖 - Voxel Viewer" />
<meta
property="twitter:description"
content="The dinosaurs are back! (in the metaverse)"
/>
<meta
property="twitter:image"
content="https://cryptotrexnft.com/img/meta-banner.jpeg"
/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="preload.css" />
<script type="module" src="model-viewer.js"></script>
<style>
body {
margin: 0;
}
#viewer {
height: 100vh;
width: 100vw;
}
</style>
</head>
<body>
<div id="loader">
<div id="spinner">
<div class="square" id="s0"></div>
<div class="square" id="s1"></div>
<div class="square" id="s2"></div>
<div class="square" id="s3"></div>
<div class="square" id="s4"></div>
<div class="square" id="s5"></div>
<div class="square" id="s6"></div>
<div class="square" id="s7"></div>
<div class="square" id="s8"></div>
</div>
</div>
<div id="viewer"></div>
<script src="preload.js" type="module"></script>
</body>