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> <!doctype html>
<html> <html lang="fr">
<head> <head>
<title>WebGL Sites Project</title> <meta charset="utf-8" />
<meta charset="utf-8"/> <title>Demonixis.Net :: Babylon.js - Partie 1</title>
</head> <style>
body, html {
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<body> <canvas id="renderCanvas"></canvas>
<div class="content"></div>
</body>
<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> </html>