18 lines
619 B
HTML
18 lines
619 B
HTML
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>崩坏童话:蜜糖村</title>
|
|
<style>
|
|
html, body { margin: 0; padding: 0; height: 100%; background: #000; overflow: hidden; }
|
|
#game { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
|
|
canvas { image-rendering: pixelated; image-rendering: crisp-edges; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="game"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|