-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
143 lines (138 loc) · 4.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="SKÅPA" />
<meta property="og:type" content="website" />
<meta
name="description"
content="3D printable model generator for IKEA SKÅDIS"
/>
<meta
property="og:description"
content="3D printable model generator for IKEA SKÅDIS"
/>
<meta property="og:url" content="https://skapa.build" />
<meta property="og:image" content="/public/skapa.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<title>IKEA SKÅDIS Models</title>
</head>
<body>
<header>
<h1>SKÅPA</h1>
</header>
<section>
<div id="part">
<div id="canvas-container">
<canvas></canvas>
</div>
</div>
<main>
<div class="controls">
<div class="stepper-input-wrapper">
<label for="levels">Levels</label>
<button id="levels-minus">
<svg
stroke="currentColor"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 128 128"
>
<path
vector-effect="non-scaling-stroke"
d="M32 64H96"
fill="none"
/>
</svg>
</button>
<div class="stepper-input-value">
<input type="number" id="levels" name="levels" min="1" max="5" />
</div>
<button id="levels-plus">
<svg
stroke="currentColor"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 128 128"
>
<path
vector-effect="non-scaling-stroke"
d="M64 32V96M32 64H96"
fill="none"
/>
</svg>
</button>
</div>
<div class="range-input-wrapper">
<label for="width">Width</label>
<input
type="range"
tabindex="1"
id="width-range"
min="18"
max="200"
/>
<div class="range-input-value">
<input type="number" id="width" name="width" min="18" max="100" />
</div>
</div>
<div class="range-input-wrapper">
<label for="depth">Depth</label>
<input
type="range"
tabindex="1"
id="depth-range"
min="16"
max="200"
/>
<div class="range-input-value">
<input type="number" id="depth" name="depth" min="16" max="100" />
</div>
</div>
</div>
<a class="download">Download 3MF</a>
</main>
</section>
<footer>
<ul>
<li>
<a target="_blank" href="https://github.com/nmattia/skapa">
<svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
version="1.1"
width="24"
class="octicon"
fill="currentColor"
>
<path
d="M12.5.75C6.146.75 1 5.896 1 12.25c0 5.089 3.292 9.387 7.863 10.91.575.101.79-.244.79-.546 0-.273-.014-1.178-.014-2.142-2.889.532-3.636-.704-3.866-1.35-.13-.331-.69-1.352-1.18-1.625-.402-.216-.977-.748-.014-.762.906-.014 1.553.834 1.769 1.179 1.035 1.74 2.688 1.25 3.349.948.1-.747.402-1.25.733-1.538-2.559-.287-5.232-1.279-5.232-5.678 0-1.25.445-2.285 1.178-3.09-.115-.288-.517-1.467.115-3.048 0 0 .963-.302 3.163 1.179.92-.259 1.897-.388 2.875-.388.977 0 1.955.13 2.875.388 2.2-1.495 3.162-1.179 3.162-1.179.633 1.581.23 2.76.115 3.048.733.805 1.179 1.825 1.179 3.09 0 4.413-2.688 5.39-5.247 5.678.417.36.776 1.05.776 2.128 0 1.538-.014 2.774-.014 3.162 0 .302.216.662.79.547C20.709 21.637 24 17.324 24 12.25 24 5.896 18.854.75 12.5.75Z"
></path>
</svg>
</a>
</li>
<li>
©
<a
href="https://nmattia.com"
target="_blank"
rel="noopener noreferrer"
>Nicolas Mattia</a
>
2025
</li>
<li>
<a target="_blank" href="https://github.com/nmattia/skapa/issues/new"
>feedback</a
>
</li>
</ul>
</footer>
<script type="module" src="/src/main.ts"></script>
</body>
</html>