mirror of
https://github.com/YuzuZensai/Simple-ThreeJS-3D-Viewer.git
synced 2026-09-13 10:49:16 +00:00
91 lines
1.6 KiB
HTML
91 lines
1.6 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Simple 3D Viewer</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.scene,
|
|
canvas {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#overlay {
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
|
|
z-index: 2;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#loadOverlay {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
z-index: 2;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#text {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
font-size: 50px;
|
|
color: white;
|
|
transform: translate(-50%, -50%);
|
|
-ms-transform: translate(-50%, -50%);
|
|
}
|
|
|
|
|
|
#ctext {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
font-size: 25px;
|
|
color: white;
|
|
transform: translate(-50%, -50%);
|
|
-ms-transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="loadOverlay">
|
|
<div id="ctext">Loading</div>
|
|
</div>
|
|
|
|
<div class="scene"></div>
|
|
<script src="js/three.js"></script>
|
|
<script src="js/OrbitControls.js"></script>
|
|
<script src="js/GLTFLoader.js"></script>
|
|
<script src="js/app.js"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |