Push Default Template
This commit is contained in:
parent
603470fc55
commit
e6847f1752
1 changed files with 28 additions and 9 deletions
37
index.html
37
index.html
|
@ -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>
|
||||||
|
|
Reference in a new issue