Files
QZMusic_PC/amll-local/packages/playground/core-legacy/index.html

38 lines
766 B
HTML
Raw Normal View History

<!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>