Skip to content

Commit 15ef94c

Browse files
committed
initial commit
0 parents  commit 15ef94c

9 files changed

+1221
-0
lines changed

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Whitespace-only changes.

index.html

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
7+
<link href="https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined" rel="stylesheet">
8+
<title>Canvas experiment</title>
9+
</head>
10+
<body>
11+
<div id="app">
12+
<section id="menu-container">
13+
<span class="header">Tools</span>
14+
<hr>
15+
<input type="range" id="size-slider" min="1" max="30" value="4">
16+
17+
<button id="undo">
18+
<span class="material-icons" title="Undo">undo</span>
19+
</button>
20+
21+
<button id="redo">
22+
<span class="material-icons" title="Redo">redo</span>
23+
</button>
24+
25+
<button id="clear">
26+
<span class="material-symbols-outlined" title="Clear">delete</span>
27+
</button>
28+
29+
<button id="download">
30+
<span class="material-symbols-outlined" title="Download">download</span>
31+
</button>
32+
</section>
33+
<section id="canvas-container">
34+
<canvas id="canvas"></canvas>
35+
</section>
36+
</div>
37+
<script type="module" src="/src/main.ts"></script>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)