map-interaction/index.html

33 lines
765 B
HTML
Raw Permalink Normal View History

2025-01-30 23:47:14 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0,
maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<title>Mobile Game</title>
2025-01-30 23:47:14 +08:00
<style>
html, body {
margin: 0;
padding: 0;
overflow: hidden;
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
#gameContainer {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
2025-01-30 23:47:14 +08:00
}
</style>
</head>
<body>
<div id="gameContainer"></div>
<script type="module" src="/dist/index.js"></script>
2025-01-30 23:47:14 +08:00
</body>
</html>