-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
209 lines (190 loc) · 5.66 KB
/
index.html
File metadata and controls
209 lines (190 loc) · 5.66 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tiny Fonts</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="assets/icon.png" />
</head>
<body
x-data="new App()"
x-init="mount()"
@beforeunload.window="unmount()"
@keydown="handleKeyDown($event)"
>
<nav class="menu">
<img src="assets/logo.png" height="25px" style="image-rendering: pixelated" />
<div class="grow"></div>
<div class="control-group">
<label class="control number-control" title="Glyph width">
<input
type="number"
x-model.number="font.glyphWidth"
min="0"
max="999"
/>
</label>
/
<label class="control number-control" title="Glyph height">
<input
type="number"
x-model.number="font.glyphHeight"
min="0"
max="999"
/>
</label>
/
<label class="control number-control" title="Line height">
<input
type="number"
x-model.number="font.lineHeight"
min="0"
max="999"
/>
</label>
/
<label class="control number-control" title="Start char code">
<input
type="number"
x-model.number="font.startCharCode"
min="0"
max="999"
/>
</label>
</div>
<div class="grow"></div>
<button class="control button-control" @click="createNewFont()">
New
</button>
<button class="control button-control" @click="exportJavaScript()">
Export
</button>
<a href="https://github.com/danprince/tinyfonts" target="_blank">
<button class="control button-control">Help</button>
</a>
<a href="https://github.com/danprince/tinyfonts" target="_blank">
<img src="assets/github.svg" width="20" />
</a>
</nav>
<!-- Editor -->
<div class="editor">
<div class="editor-grid">
<template x-for="cell in getEditorGridCells()">
<button
class="editor-glyph"
:data-selected="cell.charCode === selectedCharCode"
@click="selectedCharCode = cell.charCode"
>
<div
class="editor-glyph-advance"
:style="{ width: `${cell.advance * editorScaling}px` }"
x-show="cell.charCode === selectedCharCode"
></div>
<canvas
x-effect="renderEditorGlyph($el, cell.charCode)"
:style="{
left: `${cell.xOffset * editorScaling}px`,
top: `${cell.yOffset * editorScaling}px`,
}"
></canvas>
</button>
</template>
</div>
</div>
<!-- Menu -->
<nav class="menu">
<div class="control-group">
<label class="control color-control" title="Foreground color">
<input type="color" x-model="previewForegroundColor" />
<span
class="swatch"
:style="{ background: previewForegroundColor }"
></span>
</label>
/
<label class="control color-control" title="Background color">
<input type="color" x-model="previewBackgroundColor" />
<span
class="swatch"
:style="{ background: previewBackgroundColor }"
></span>
</label>
/
<label class="control color-control" title="Stroke color">
<input type="color" x-model="previewStrokeColor" />
<span
class="swatch"
:style="{ background: previewStrokeColor }"
></span>
</label>
/
<label class="control number-control" title="Stroke bits">
<input
type="number"
x-model.number="previewStrokeBits"
min="0"
max="255"
/>
</label>
</div>
<div class="grow"></div>
<div class="control-group">
<label class="control number-control" title="Preview width">
<input
type="number"
x-model.number="previewCanvasWidth"
min="1"
max="999"
/>
</label>
/
<label class="control number-control" title="Padding">
<input
type="number"
x-model.number="previewPadding"
min="0"
max="99"
/>
</label>
</div>
<div class="grow"></div>
<label class="control checkbox-control">
<input type="checkbox" x-model.boolean="previewTextWrappingEnabled" />
Wrap
</label>
<label class="control checkbox-control">
<input
type="checkbox"
x-model.boolean="previewBackgroundTransparency"
/>
Alpha
</label>
<select @change="previewText = specimens[$el.value]">
<optgroup label="Specimens">
<template x-for="(text, id) in specimens">
<option :value="id" x-text="id"></option>
</template>
</optgroup>
</select>
</nav>
<!-- Preview -->
<canvas
class="preview"
id="preview-canvas"
x-effect="renderPreview()"
></canvas>
<textarea
class="preview-textarea"
placeholder="Enter some text here..."
x-model="previewText"
></textarea>
<div
class="popup"
x-text="popupMessage"
:class="popupMessageVisible && 'show'"
></div>
</body>
<script type="module" src="app.js"></script>
<script defer src="//unpkg.com/alpinejs"></script>
</html>