All Together Wow
We should have something like this. Please note that this only an example. Take a look at the actual source code to see a working example.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="../resources/favicon.ico" />
<link rel="stylesheet" type="text/css" href="./assets/css/styles.css" />
<script src="../libs/three.js"></script>
<script src="../libs/smooth-zoom.js"></script>
<title>IFC.js</title>
</head>
<body>
<div id="loading" class="loaderBackground">
<div class="loader"></div>
</div>
<div id="generalContainer">
<div id="GUI">
<input readonly type="file" id="openFileDialog" />
<button
class="normalButton"
onclick="document.getElementById('openFileDialog').click();"
>
Open
</button>
</div>
<canvas id="c"></canvas>
</div>
<script src="../libs/chevrotain.min.js"></script>
<script src="../libs/OrbitControls.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>
Last updated