Add files via upload

This commit is contained in:
PelissierCombescure
2023-03-03 10:56:59 +01:00
committed by GitHub
parent ee4078570e
commit 937eba3a16
16 changed files with 54877 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!doctype HTML>
<html>
<head>
<meta charset="utf-8">
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
<div>
<input id="username" type="text" placeholder="Nom d'utilisateur">
<button id="button">Envoyer</button>
</div>
<script src="/main.js"></script>
</body>
</html>
+37
View File
@@ -0,0 +1,37 @@
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<meta charset="utf-8">
<style>
body{
margin:0;
padding:0;
overflow:hidden;
}
</style>
<title>User study version 3D</title>
</head>
<body>
<div class = "canvas">
<canvas id="canvas" width="1920" height="1080">
Votre navigateur ne supporte pas les canvas, essayez-en un autre.
</canvas>
</div>
<script src="/static/three.js"></script>
<script src="/static/LoaderSupport.js"></script>
<script src="/static/OBJLoader2.js"></script>
<script src="/static/OrbitControls.js"></script>
<script src="/static/fonctions_choix_vues.js"></script>
<script src="/static/fonctions_tuto.js"></script>
<script src="/static/fonctions_fin.js"></script>
<script src="/static/interface3D.js"></script>
</body>
</html>