luma.gl/examples/lessons/05/index.html
2017-10-30 10:53:00 -07:00

26 lines
740 B
HTML

<html>
<head>
<title>Lesson 5</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>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<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>
</html>