You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
451 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Simplex Noise Test</title>
<style>
body, html { width: 100%; height: 100%; padding: 0; margin: 0; overflow: hidden; background: black; }
canvas { display: block; width: 1024px; height: 768px; margin: calc(50vh - 768px / 2) auto 0; border: 2px solid #333; }
</style>
</head>
<body>
<canvas></canvas>
<script type="module" src="/src/simplex-demo.ts"></script>
</body>
</html>