-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
455 lines (415 loc) · 14 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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Libraries</title>
<style>
body {
line-height: 25pt;
font-size: large;
}
.mono {
font-family: "Courier New", Courier, monospace;
}
</style>
</head>
<body>
<h1>Week 6 Labs: JavaScript Libraries</h1>
<hr />
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/local-storage/save_colors.html"
target="_blank"
>
Local storage
</a>
: on browsers
</li>
<br />
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/js-import-export/index.html"
target="_blank"
>
JavaScript: Import & Export
</a>
: Demonstrates importing and exporting modules in JS. Use
<span class="mono">npx http-server</span> to see working example after
installing node.js.
</li>
<br />
<li>
HTML Canvas
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/canvas_template.html"
target="_blank"
>
Canvas template
</a>
: Drawing rectangle/square template on a canvas - filled and outline
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/hello_canvas.html"
target="_blank"
>
Hello canvas
</a>
: Drawing rectangles on a canvas - filled box and outline box
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/fill_vs_stroke.html"
target="_blank"
>
Fill vs. Stroke
</a>
: drawing squares examples
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/gradients.html"
target="_blank"
>
Gradients
</a>
: horizontal, vertical, diagonal, & radial gradients
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/intervals.html"
target="_blank"
>
Drawing in intervals
</a>
: <span class="mono">setInterval(nameOfFunction, timeBetweenCallingFunctionInMs)</span>
</li>
<li>
Drawing on canvas
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/drawing_rectangles.html"
target="_blank"
>
Rectangles & Squares
</a>
: filled & outlined box
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/drawing_lines.html"
target="_blank"
>
Lines
</a>
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/drawing_circles.html"
target="_blank"
>
Circles
</a>
: circles & circle segments
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/drawing_text.html"
target="_blank"
>
Text
</a>
: filled & outlined text
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/draw-image-on-canvas/draw_image.html"
target="_blank"
>
Draw image on a canvas
</a>
: <span class="mono">drawImage(image, destination x, destination y)</span>
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/draw-on-a-picture/draw_word.html"
target="_blank"
>
Draw text on a picture
</a>
: drawing an image on a canvas with text writing input features
</li>
</ul>
</li>
<li>
Canvas events
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/coordinates.html"
target="_blank"
>
Coordinates
</a>
: finding x, y coordinates on the canvas
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/mouse_events.html"
target="_blank"
>
Mouse events
</a>
: example of a mouse <span class="mono">click</span> event on canvas
</li>
<li>
Mouse drag
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/mouse-drag/mouse_drag_squares.html"
target="_blank"
>
Draws squares
</a>
: template/starter file for Lab 6
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/mouse-drag/mouse_drag_circle_inputs.html"
target="_blank"
>
Lab 6: Draws circles
</a>
: with <span class="mono">color</span> and <span class="mono">range</span> inputs for circle radius
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/mouse-drag/mouse_drag_circles_random_color.html"
target="_blank"
>
Draws circles
</a>
: randomly generated colors
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/html-canvas/mouse-drag/draw_n_undo.html"
target="_blank"
>
Draw & Undo
</a>
: <span class="mono">saveHistory()</span> & <span class="mono">undoHistory()</span>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<br />
<li>
Leaflet JS: v1.9.4 - used for maps
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/leaflet_template.html"
target="_blank"
>
Leaflet template
</a>
: starter file
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/hello-leaflet/hello_leaflet_maps.html"
target="_blank"
>
MN metro area map
</a>
: for 3 individually listed colleges in the MN metro area using Mapbox tiles
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/campuses/campuses.html"
target="_blank"
>
MN college campuses map
</a>
: for an array of colleges in the MN metro area using Mapbox tiles along with a loop
</li>
<li>
Other map tile providers
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/other-map-tiles/thunderforest-tiles/mn_zoo.html"
target="_blank"
>
Thunderforest Map Tiles
</a>
: 'Atlas' map style used to show the location of the Minnesota Zoo
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/other-map-tiles/geoapify-tiles/mall_of_america.html"
target="_blank"
>
Geoapify Map Tiles
</a>
: 'Carto' map style used to show the location of Mall of America, MN
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/other-map-tiles/planet-tiles/planets.html"
target="_blank"
>
Open Planetary Basemap Tiles
</a>
: demonstrates mars and moon basemaps
</li>
</ul>
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/map-listener/park_map.html"
target="_blank"
>
Map event listeners
</a>
: demonstrates <span class="mono">click</span> & <span class="mono">dblclick</span> event listeners
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/marker-colors/college_map.html"
target="_blank"
>
Map marker colors
</a>
: adding different marker icons to maps
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/leaflet-js/longest-bridge/longest_bridge.html"
target="_blank"
>
Lab 6: Longest US Bridges Map
</a>
: demonstrates creating maps, adding custom markers, with looping over multiple bridges
</li>
</ul>
</li>
<br />
<li>
Flickity: v2 - used for carousels
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/flickity/winter_image_carousel.html"
target="_blank"
>
Winter images carousel
</a>
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/flickity/android_version_text_carousel.html"
target="_blank"
>
Text carousel
</a>
: Android versions
</li>
</ul>
</li>
<br />
<li>
Glide JS: v3.6.0 - used for carousels
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/glide-js/fall_carousel.html"
target="_blank"
>
Fall images carousel
</a>
</li>
</ul>
</li>
<br />
<li>
Highlight JS: v11.8.0 - used for code highlighting
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/highlight_code.html"
target="_blank"
>
Programming languages
</a>
</li>
</ul>
</li>
<br />
<li>
Chart JS: v4 - used for graphs and charts
<ul>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/chart-js/soda-chart/hello_chart.html"
target="_blank"
>
Soda chart
</a>
: using vertical bar chart
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/chart-js/expense-chart/expenses.html"
target="_blank"
>
Expenses chart
</a>
: using doughnut chart
</li>
<li>
<a
href="https://myverdict.github.io/week6-web-programming-javascript/chart-js/longest-bridge-chart/longest_bridge_chart.html"
target="_blank"
>
Lab 6: Longest US Bridges Chart
</a>
: using horizontal bar chart
</li>
</ul>
</li>
<br />
<li>
Also see,
<a
href="https://github.com/myverdict/ITEC-lab6-assignment"
target="_blank"
>
Lab 6 assignment repository
</a>
</li>
</ul>
<hr />
<p>
<i>
ITEC 2560-60: Web Client and Server Programming
<br />
Minneapolis Community and Technical College (MCTC), Minneapolis, Minnesota
<br />
Prof. Clara James, Fall 2020
<br />
August 25, 2020 to December 15, 2020 (Tuesdays)
</i>
</p>
</body>
</html>