File size: 1,334 Bytes
8ad7407 874a2dc 8ad7407 |
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" />
<meta
name="description"
content="Explore a Three.js project."
/>
<title>Example</title>
<style>
html,
body {
margin: 0;
padding: 0;
background-color: black;
overflow: hidden;
height: 100%;
width: 100%;
}
#loader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
color: white;
font-size: 2rem;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
opacity: 1;
transition: opacity 0.5s ease;
}
</style>
<script type="module" crossorigin src="/assets/index-CN23FNcd.js"></script>
<link rel="modulepreload" crossorigin href="/assets/three-BBdsPnFb.js">
</head>
<body>
<div id="loader">...Please wait...</div>
<div id="app"></div>
</body>
</html>
|