on y est presque
This commit is contained in:
+51
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Créer un paysage</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://unpkg.com/paper@0.12.15/dist/paper-full.min.js"></script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- menu du haut -->
|
||||
<header>
|
||||
<nav>
|
||||
<ul class="menu">
|
||||
<li><a href="index.html">Accueil</a></li>
|
||||
<li><a href="create.html" class="active">Créer</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- panneau de controle + canvas -->
|
||||
<div id="app">
|
||||
<div id="controls">
|
||||
<h2>Panneaux de contrôles</h2>
|
||||
<button id="draw-scheme">Tirer un schéma & lettres</button>
|
||||
|
||||
<label for="shape">Choisir une forme :</label>
|
||||
<select id="shape">
|
||||
<option value="free">Libre</option>
|
||||
<option value="spiral">Spirale</option>
|
||||
<option value="circle">Cercle</option>
|
||||
</select>
|
||||
<br><br>
|
||||
|
||||
<button id="clear">Effacer</button>
|
||||
<button id="export">Exporter PNG</button>
|
||||
<br><br>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<canvas id="canvas-typo"></canvas>
|
||||
</div>
|
||||
|
||||
<script src="scripttypo.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user