You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
510 B
18 lines
510 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ThreeJS & TypeScript</title>
|
|
<!-- loads some basic CSS resets and Styles -->
|
|
<style>
|
|
html, body, canvas {margin: 0;padding: 0;border: 0;}
|
|
canvas {display: block;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Application Canvas -->
|
|
<canvas id="app"></canvas>
|
|
<!-- this needs to be called here to ensure all elements are available -->
|
|
<script src="threejssimple.bundle.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|