Shaojing Li 318362be9a Make example running standalone (#285)
* Make all examples working as standalone
* Change title
2017-07-26 20:04:55 -07:00

25 lines
546 B
HTML

<html>
<head>
<title>Shadowmap example</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<style>
body {
margin: 0px;
}
canvas {
width: 100%;
height: 100%;
background-size: cover;
}
</style>
<body>
<canvas id="lumagl-canvas"></canvas>
<script type="text/javascript" src="bundle.js"></script>
<script>window.animationLoop.start({canvas: 'lumagl-canvas'}); // eslint-disable-line</script>
</body>
</head>
</html>