File size: 1,093 Bytes
6de9e0c d08ec62 3ccc80a 6de9e0c b5501d5 3ccc80a d08ec62 3ccc80a d08ec62 6de9e0c d08ec62 1b5e497 6de9e0c d08ec62 3ccc80a 6de9e0c | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Minecraft CV Controller</title>
<!-- MediaPipe AI Scripts -->
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/hands/hands.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/camera_utils/camera_utils.js" crossorigin="anonymous"></script>
<!-- We renamed your file to style.css -->
<link rel="stylesheet" crossorigin href="./assets/style.css">
<style>
body { margin: 0; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; font-family: sans-serif; }
#loading-msg { position: absolute; color: #666; font-size: 18px; z-index: -1; }
</style>
</head>
<body>
<div id="loading-msg">Loading AI and 3D Scene... Please wait.</div>
<div id="root"></div>
<!-- We renamed your file to main.js -->
<script type="module" crossorigin src="./assets/main.js"></script>
</body>
</html> |