Update index.html
Browse files- index.html +6 -6
index.html
CHANGED
|
@@ -5,23 +5,23 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
<title>Minecraft CV Controller</title>
|
| 7 |
|
| 8 |
-
<!--
|
| 9 |
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/hands/hands.js" crossorigin="anonymous"></script>
|
| 10 |
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/camera_utils/camera_utils.js" crossorigin="anonymous"></script>
|
| 11 |
|
| 12 |
-
<!--
|
| 13 |
-
<link rel="stylesheet" crossorigin href="./assets/
|
| 14 |
|
| 15 |
<style>
|
| 16 |
body { margin: 0; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; font-family: sans-serif; }
|
| 17 |
-
#loading-msg { position: absolute; color: #666; font-size: 18px; }
|
| 18 |
</style>
|
| 19 |
</head>
|
| 20 |
<body>
|
| 21 |
<div id="loading-msg">Loading AI and 3D Scene... Please wait.</div>
|
| 22 |
<div id="root"></div>
|
| 23 |
|
| 24 |
-
<!--
|
| 25 |
-
<script type="module" crossorigin src="./assets/
|
| 26 |
</body>
|
| 27 |
</html>
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
<title>Minecraft CV Controller</title>
|
| 7 |
|
| 8 |
+
<!-- MediaPipe AI Scripts -->
|
| 9 |
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/hands/hands.js" crossorigin="anonymous"></script>
|
| 10 |
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/camera_utils/camera_utils.js" crossorigin="anonymous"></script>
|
| 11 |
|
| 12 |
+
<!-- We renamed your file to style.css -->
|
| 13 |
+
<link rel="stylesheet" crossorigin href="./assets/style.css">
|
| 14 |
|
| 15 |
<style>
|
| 16 |
body { margin: 0; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; font-family: sans-serif; }
|
| 17 |
+
#loading-msg { position: absolute; color: #666; font-size: 18px; z-index: -1; }
|
| 18 |
</style>
|
| 19 |
</head>
|
| 20 |
<body>
|
| 21 |
<div id="loading-msg">Loading AI and 3D Scene... Please wait.</div>
|
| 22 |
<div id="root"></div>
|
| 23 |
|
| 24 |
+
<!-- We renamed your file to main.js -->
|
| 25 |
+
<script type="module" crossorigin src="./assets/main.js"></script>
|
| 26 |
</body>
|
| 27 |
</html>
|