-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel1.html
More file actions
38 lines (38 loc) · 1.45 KB
/
Copy pathmodel1.html
File metadata and controls
38 lines (38 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Model Viewer</title>
<link rel="stylesheet" href="style.css?v=ready-loader-1">
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.160.0/build/three.module.js",
"GLTFLoader": "https://cdn.jsdelivr.net/npm/three@0.160.0/examples/jsm/loaders/GLTFLoader.js",
"OrbitControls": "https://cdn.jsdelivr.net/npm/three@0.160.0/examples/jsm/controls/OrbitControls.js"
}
}
</script>
</head>
<body>
<div id="loadingOverlay" aria-live="polite" aria-label="Loading 3D specimen">
<div class="bio-loader" aria-hidden="true">
<div class="cell-core"></div>
<div class="cell-orbit cell-orbit--one"></div>
<div class="cell-orbit cell-orbit--two"></div>
<div class="cell-node cell-node--one"></div>
<div class="cell-node cell-node--two"></div>
<div class="cell-node cell-node--three"></div>
</div>
<div class="loading-readout">
<p id="loadingStatus">Culturing specimen</p>
<strong id="loadingPercent">0%</strong>
<div class="loading-track">
<span id="loadingBar"></span>
</div>
</div>
</div>
<script type="module" src="scripts.js?v=ready-loader-1"></script>
</body>
</html>