1
0
Fork 0

Push Default Template

This commit is contained in:
Florian RICHER 2016-12-01 20:59:45 +01:00
parent 603470fc55
commit e6847f1752

View file

@ -1,12 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<title>WebGL Sites Project</title>
<meta charset="utf-8"/>
</head>
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>Demonixis.Net :: Babylon.js - Partie 1</title>
<style>
body, html {
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<body>
<div class="content"></div>
</body>
<canvas id="renderCanvas"></canvas>
<script src="scripts/babylon.1.6.js"></script>
<script src="scripts/hand-1.1.3.js"></script>
<script src="scripts/demo.js"></script>
<script>
runDemo("renderCanvas");
</script>
</body>
</html>