Creation de la base du glitcher

This commit is contained in:
2026-04-20 19:00:08 +02:00
parent c10ce7e8d7
commit f1229866d1
9 changed files with 368 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="glitcher.css">
<title>Drags&Nerds Glitcher</title>
</head>
<body>
<form id="glitcher-form">
<div id="welcome-panel">
<h1>Glitcher</h1>
<p>Séléctionne un photo pour la glitcher</p>
<input type="file" name="image" accept="image/jpg, image/jpeg,image/png,image/webp" />
</div>
<div id="glitch-panel">
<canvas id="ui-canvas"></canvas>
</div>
</form>
<script type="module" src="glitcher.js"></script>
</body>
</html>