mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-06-22 00:19:54 +08:00
38 lines
766 B
HTML
38 lines
766 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>AMLL Core Test</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="src/test.ts" type="module" defer></script>
|
|
<style>
|
|
:root {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
body {
|
|
max-width: 100vw;
|
|
width: 100vw;
|
|
max-height: 100vh;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background: #222;
|
|
margin: 0;
|
|
}
|
|
|
|
#player {
|
|
max-height: 100vh;
|
|
height: 100vh;
|
|
max-width: 100vw;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="player"></div>
|
|
</body>
|
|
</html>
|