mirror of
https://github.com/pissang/claygl.git
synced 2026-01-18 16:22:29 +00:00
29 lines
434 B
HTML
29 lines
434 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#main {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#stats {
|
|
z-index: 10;
|
|
position: relative;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="main"></div>
|
|
<script type="module" src="./app_performance2.ts"></script>
|
|
</body>
|
|
</html>
|