51 lines
726 B
HTML
51 lines
726 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>主义主义 卡片重铸</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="x-icon" href="https://img.00000.host/2022/10/27/635a7048a7586.png">
|
|
</head>
|
|
|
|
<style>
|
|
body {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#fps {
|
|
position: fixed;
|
|
top: 1ch;
|
|
right: 1ch;
|
|
color: cyan;
|
|
text-align: right;
|
|
white-space: pre;
|
|
}
|
|
|
|
#img {
|
|
width: 100%;
|
|
}
|
|
|
|
#canvas {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.none {
|
|
display: none;
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
<code id="fps">fps: 0</code>
|
|
<canvas id="canvas"></canvas>
|
|
<img id="img" src="./2-1-1-2.webp">
|
|
</body>
|
|
|
|
<script src="./bind.js"></script>
|
|
|
|
</html>
|