This commit is contained in:
2024-05-14 04:23:36 +02:00
commit 9f2e0ca753
14 changed files with 2665 additions and 0 deletions

16
painter-js/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Painter</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<input type="color" id="color-picker" value="#000000" />
<div id="countdown">You can place a pixel now</div>
<canvas id="canvas" width="500" height="500"></canvas>
<script type="module" src="/src/main.js"></script>
</body>
</html>