2025-01-30 23:47:14 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2025-02-01 06:09:27 +08:00
|
|
|
<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>
|
2025-02-01 06:09:27 +08:00
|
|
|
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>
|
2025-02-01 06:09:27 +08:00
|
|
|
<div id="gameContainer"></div>
|
|
|
|
<script type="module" src="/dist/index.js"></script>
|
2025-01-30 23:47:14 +08:00
|
|
|
</body>
|
|
|
|
</html>
|