mirror of
https://github.com/visgl/luma.gl.git
synced 2026-02-01 14:33:49 +00:00
26 lines
740 B
HTML
26 lines
740 B
HTML
<html>
|
|
<head>
|
|
<title>Lesson 2</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>
|