mirror of
https://github.com/pissang/claygl.git
synced 2026-01-18 16:22:29 +00:00
24 lines
361 B
HTML
24 lines
361 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
canvas {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="main"></canvas>
|
|
<script src="./performance.ts" type="module"></script>
|
|
</body>
|
|
</html>
|