-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1988 lines (1814 loc) · 134 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0043)http://nma.kcc.hawaii.edu/gargiulo/ids.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>KCC NMA Chris Gargiulo's Faculty Site - Interface Design Studio</title>
<!-- GOOGLE SHIV -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="description" content="Welcome to Chris Gargiulo's faculty web site. Chris Gargiulo teaches interface design at Kapiolani Community College, part of the University of Hawaii, within the New Media Arts program. This site is an online resource for new media art and interface design related topics and techniques. Within the contents of the site you should be able to find web design and front-end web development related information and information for all of the courses taught by Chris Gargiulo along with his articles, lessons, examples, assignments and links.">
<meta name="keywords" content="Chris Gargiulo, Kapiolani Community College New Media Arts, KCC New Media Arts, KCC NMA, KCC, NMA, New Media Arts, Honolulu, Hawaii, new media, interface design, animation, web site design, web design, front-end web development, teacher, instructor, faculty, filmmaker, animation, motion graphics, typography, graphic design, multimedia, designer, animator, flash, photoshop, illustrator, dreamweaver, after effects, adobe, html, html, css, web standards, usability, learning, tutorials, information architecture, production, digital video, editing, credit, classes, courses, teaching, training, faculty, school, schools, program, programs">
<!-- VIEWPORT FOR MOBILE -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- MAIN CSS STYLES -->
<link href="./index_files/fontello.css" rel="stylesheet" type="text/css">
<link href="./index_files/style.css" rel="stylesheet" type="text/css">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="57x57" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="http://nma.kcc.hawaii.edu/gargiulo/images/favicons/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="images/favicons/mstile-144x144.png">
</head>
<body class="sub ids maroon">
<header id="top">
<div class="container group">
<div class="logo">
<h1><a href="http://nma.kcc.hawaii.edu/gargiulo/index.html"><span>NMA</span> Chris Gargiulo</a></h1>
<p class="tagline"><span>Kapi‘olani Community College, University of Hawai‘i - NMA Interface Design</span></p>
</div>
<nav id="mainnav" class="group">
<div id="menu"><i class="icon-menu-1"></i> <span>Menu</span></div>
<ul>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/index.html">Home</a></li>
<li class="selected"><a href="http://nma.kcc.hawaii.edu/gargiulo/courses.html">Courses</a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/about.html">About</a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/blog.html">Blog</a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/contact.html">Contact</a></li>
</ul>
</nav>
</div><!-- END CONTAINER -->
</header>
<section class="subnav group">
<div class="container">
<nav id="subnav">
<div id="submenu"><span>Sub Menu</span> <div class="arrow"></div></div>
<ul class="group speaking rainbow">
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/ip1.html">ART <span>128</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/ia.html">ART <span>155</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/dm.html">ART <span>222</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/id2.html">ART <span>249</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/motion.html">ART <span>257</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/ip2.html">ART <span>258</span></a></li>
<li class="selected"><a href="./index_files/index.html">ART <span>285</span></a></li>
<li><a href="http://nma.kcc.hawaii.edu/gargiulo/internship.html">ART <span>293</span></a></li>
</ul>
</nav>
</div>
</section>
<section class="billboard main dark accented">
<div class="container">
<div class="row">
<div class="sixteen columns">
<h1>ART <span class="light">285</span></h1>
<h2>Interface Design Studio</h2>
<h6 class="credit"><span>@</span> KCC <span>New Media Arts</span></h6>
</div><!-- END SIXTEEN COLUMN -->
</div><!-- END ROW GROUP -->
</div><!-- END CONTAINER -->
</section>
<section class="colored navjumper">
<div class="container">
<div class="row text-center group">
<div class="one-fifth column split">
<div class="box"><a class="filled circled anchor" href="http://nma.kcc.hawaii.edu/gargiulo/ids.html#intro"><span class="equal"><span class="vertbox">
<span><i class="icon-coffee"></i></span>
</span></span></a></div>
<h3>Intro</h3>
</div>
<div class="one-fifth column split">
<div class="box"><a class="filled circled anchor" href="http://nma.kcc.hawaii.edu/gargiulo/ids.html#coursecontent"><span class="equal"><span class="vertbox">
<span><i class="icon-list"></i></span>
</span></span></a></div>
<h3>Course Content</h3>
</div>
<div class="one-fifth column split">
<div class="box"><a class="filled circled anchor" href="http://nma.kcc.hawaii.edu/gargiulo/ids.html#about"><span class="equal"><span class="vertbox">
<span><i class="icon-icon_boy6"></i></span>
</span></span></a></div>
<h3>Teacher</h3>
</div>
<div class="one-fifth column split">
<div class="box"><a class="filled circled anchor" href="http://nma.kcc.hawaii.edu/gargiulo/ids.html#contact"><span class="equal"><span class="vertbox">
<span><i class="icon-mail-3"></i></span>
</span></span></a></div>
<h3>Contact</h3>
</div>
<div class="one-fifth column split">
<div class="box"><a class="filled circled anchor" href="http://nma.kcc.hawaii.edu/gargiulo/ids.html#students"><span class="equal"><span class="vertbox">
<span><i class="icon-group"></i></span>
</span></span></a></div>
<h3>Students</h3>
</div>
</div>
</div><!-- END CONTAINER -->
</section>
<section id="intro" class="billboard colored">
<div class="container">
<!--<div class="sectionhead">
<h2>Course Introduction</h2>
</div>-->
<div class="row">
<div class="four-fifths column centered">
<div class="runninghead">ART 285</div>
<h1>Interface <span class="light">Design</span> Studio</h1>
<h2>Interface Design Exploration</h2>
<h6 class="credit"><span>Teacher:</span> Chris Gargiulo</h6>
<p>Interface Design Studio provides studio experience for students to work on large-scale interface design projects by going in depth into the full design process. Students can work individually or collaboratively to explore an interface design project of their choice.</p>
<p>Interface Design is a broad field that builds upon a foundation in fine art and graphic design and overlaps with multiple domains such as communications, computer science, art, and human-computer-interaction. This class is an opportunity for students to go in depth into a chosen area of focus by utilizing the studio model of learning in a curricular environment structured by the creative process for interface design. One of the limitations of any digital media curriculum is impossibility to offer courses that comprehensively cover all facets of a dynamic field that is driven by an actively growing industry that changes rapidly. So many new technologies and techniques are being developed at alarming rates, that it creates a difficult challenge for both students and educators. This course is designed to address this problem on a curricular level by providing an opportunity for students with varying interests to choose one semester-long project that best suits their individual goals and style of self-learning. Individual (and group) projects may take several different forms, such as creating a custom designed web site using a content management system, or creating a responsive web site designed to adapt to multiple screen sizes, or an app for a mobile device, or a video that uses advanced motion graphics, or a fine art gallery installation, or an advertising campaign that spans multiple media. The possibilities are endless.</p>
<a href="http://nma.kcc.hawaii.edu/gargiulo/data/_spring_2015/ids/ids_syllabus.pdf" target="_blank" class="button"><i class="icon-file-pdf"></i> ART 285 Syllabus</a>
</div><!-- END SIXTEEN COLUMN -->
</div><!-- END ROW GROUP -->
</div><!-- END CONTAINER -->
</section>
<section id="coursecontent" class="colored">
<div class="container">
<div class="sectionhead">
<h2>Course Content</h2>
</div>
<h3 class="textcentered subhead">The Schedule</h3>
<p class="byline textcentered">3 sites in 17 weeks</p>
<div class="row">
<div class="one-whole column">
<div class="item-progressbar">
<div class="row">
<div class="one-twelth column">
<div class="points total nomobile">Points</div>
</div>
<div class="ten-twelths column">
<div class="points total nomobile"></div>
</div>
<div class="one-twelth column">
<div class="points total nomobile">Grade</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points nomobile">50</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row">
<div class="item-progressbar-fill orange span-2">
<div>Define</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">10%</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points nomobile">50</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row">
<div class="item-progressbar-fill maroon push-1 span-3">
<div>Draft</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">10%</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points nomobile">100</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row">
<div class="item-progressbar-row group">
<div class="item-progressbar-fill grey push-1 span-2 floated">
<div>Tests</div>
</div>
<div class="item-progressbar-fill lightblue span-7 floated">
<div>Design</div>
</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">20%</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points nomobile">100</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row group">
<div class="item-progressbar-fill grey push-1 span-9 floated">
<div>Tests</div>
</div>
<div class="item-progressbar-fill blue span-6 floated">
<div>Develop</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">20%</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points nomobile">100</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row">
<div class="item-progressbar-fill darkblue push-16 span-1">
<div>Final</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">20%</div>
</div>
</div>
<div class="row nomobile">
<div class="one-twelth column">
<div class="points nomobile">100</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="item-progressbar-row group">
<div class="item-progressbar-fill green push-7 span-1 floated">
<div>Crit</div>
</div>
<div class="item-progressbar-fill green push-8 span-1 floated">
<div>Crit</div>
</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points nomobile">20%</div>
</div>
</div>
<div class="row">
<div class="one-twelth column">
<div class="points total nomobile">500</div>
</div>
<div class="ten-twelths column">
<div class="item-progressbar-wrapper seventeen">
<div class="weeks">
<div class="span-1 floated">1</div>
<div class="span-1 floated">2</div>
<div class="span-1 floated">3</div>
<div class="span-1 floated">4</div>
<div class="span-1 floated">5</div>
<div class="span-1 floated">6</div>
<div class="span-1 floated">7</div>
<div class="span-1 floated">8</div>
<div class="span-1 floated">9</div>
<div class="span-1 floated">10</div>
<div class="span-1 floated">11</div>
<div class="span-1 floated">12</div>
<div class="span-1 floated">13</div>
<div class="span-1 floated">14</div>
<div class="span-1 floated">15</div>
<div class="span-1 floated">16</div>
<div class="span-1 floated">17</div>
</div>
</div>
</div>
<div class="one-twelth column">
<div class="points total nomobile">100%</div>
</div>
</div>
</div>
</div>
</div>
<h3 class="textcentered subhead">Grading System</h3>
<p class="byline textcentered">500 Points Total</p>
<div class="row group">
<div class="one-sixth column textcentered split">
<div class="chart orange" data-percent="10">10%<canvas height="100" width="100"></canvas></div>
<h6>Definition Phase</h6>
<p>Project Brief<br>50 Points</p>
</div>
<div class="one-sixth column textcentered split">
<div class="chart maroon" data-percent="10">10%<canvas height="100" width="100"></canvas></div>
<h6>Draft Phase</h6>
<p>Conceptual Plan<br>50 Points</p>
</div>
<div class="one-sixth column textcentered split">
<div class="chart lightblue" data-percent="20">20%<canvas height="100" width="100"></canvas></div>
<h6>Design Phase</h6>
<p>Three Rounds of Designs<br>100 Points</p>
</div>
<div class="one-sixth column textcentered split">
<div class="chart blue" data-percent="20">20%<canvas height="100" width="100"></canvas></div>
<h6>Development Phase</h6>
<p>Two Versions of Drafts<br>100 Points</p>
</div>
<div class="one-sixth column textcentered split">
<div class="chart darkblue" data-percent="20">20%<canvas height="100" width="100"></canvas></div>
<h6>Final</h6>
<p>Project + Portfolio Entry<br>100 Points</p>
</div>
<div class="one-sixth column textcentered split">
<div class="chart green" data-percent="20">20%<canvas height="100" width="100"></canvas></div>
<h6>Class Participation</h6>
<p>Critiques<br>100 Points</p>
</div>
</div>
<h3 class="textcentered subhead">The Calendar</h3>
<p class="byline textcentered">Week-by-week due dates</p>
<div class="row group">
<div class="one-whole column">
<div id="loading" style="display: none;">Calendar loading...</div>
<div id="calendar" class="fc fc-ltr fc-unthemed"><div class="fc-toolbar"><div class="fc-left"><h2>January 2015</h2></div><div class="fc-right"><button type="button" class="fc-today-button fc-button fc-state-default fc-corner-left fc-corner-right">today</button><div class="fc-button-group"><button type="button" class="fc-prev-button fc-button fc-state-default fc-corner-left"><span class="fc-icon fc-icon-left-single-arrow"></span></button><button type="button" class="fc-next-button fc-button fc-state-default fc-corner-right"><span class="fc-icon fc-icon-right-single-arrow"></span></button></div></div><div class="fc-center"></div><div class="fc-clear"></div></div><div class="fc-view-container"><div class="fc-view fc-month-view fc-basic-view"><table><thead><tr><td class="fc-widget-header"><div class="fc-row fc-widget-header"><table><thead><tr><th class="fc-day-header fc-widget-header fc-sun">Sun</th><th class="fc-day-header fc-widget-header fc-mon">Mon</th><th class="fc-day-header fc-widget-header fc-tue">Tue</th><th class="fc-day-header fc-widget-header fc-wed">Wed</th><th class="fc-day-header fc-widget-header fc-thu">Thu</th><th class="fc-day-header fc-widget-header fc-fri">Fri</th><th class="fc-day-header fc-widget-header fc-sat">Sat</th></tr></thead></table></div></td></tr></thead><tbody><tr><td class="fc-widget-content"><div class="fc-day-grid-container"><div class="fc-day-grid"><div class="fc-row fc-week fc-widget-content" style="height: 94px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-other-month fc-past" data-date="2014-12-28"></td><td class="fc-day fc-widget-content fc-mon fc-other-month fc-past" data-date="2014-12-29"></td><td class="fc-day fc-widget-content fc-tue fc-other-month fc-past" data-date="2014-12-30"></td><td class="fc-day fc-widget-content fc-wed fc-other-month fc-past" data-date="2014-12-31"></td><td class="fc-day fc-widget-content fc-thu fc-past" data-date="2015-01-01"></td><td class="fc-day fc-widget-content fc-fri fc-past" data-date="2015-01-02"></td><td class="fc-day fc-widget-content fc-sat fc-past" data-date="2015-01-03"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-other-month fc-past" data-date="2014-12-28">28</td><td class="fc-day-number fc-mon fc-other-month fc-past" data-date="2014-12-29">29</td><td class="fc-day-number fc-tue fc-other-month fc-past" data-date="2014-12-30">30</td><td class="fc-day-number fc-wed fc-other-month fc-past" data-date="2014-12-31">31</td><td class="fc-day-number fc-thu fc-past" data-date="2015-01-01">1</td><td class="fc-day-number fc-fri fc-past" data-date="2015-01-02">2</td><td class="fc-day-number fc-sat fc-past" data-date="2015-01-03">3</td></tr></thead><tbody><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div><div class="fc-row fc-week fc-widget-content" style="height: 94px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-past" data-date="2015-01-04"></td><td class="fc-day fc-widget-content fc-mon fc-past" data-date="2015-01-05"></td><td class="fc-day fc-widget-content fc-tue fc-past" data-date="2015-01-06"></td><td class="fc-day fc-widget-content fc-wed fc-past" data-date="2015-01-07"></td><td class="fc-day fc-widget-content fc-thu fc-past" data-date="2015-01-08"></td><td class="fc-day fc-widget-content fc-fri fc-past" data-date="2015-01-09"></td><td class="fc-day fc-widget-content fc-sat fc-past" data-date="2015-01-10"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-past" data-date="2015-01-04">4</td><td class="fc-day-number fc-mon fc-past" data-date="2015-01-05">5</td><td class="fc-day-number fc-tue fc-past" data-date="2015-01-06">6</td><td class="fc-day-number fc-wed fc-past" data-date="2015-01-07">7</td><td class="fc-day-number fc-thu fc-past" data-date="2015-01-08">8</td><td class="fc-day-number fc-fri fc-past" data-date="2015-01-09">9</td><td class="fc-day-number fc-sat fc-past" data-date="2015-01-10">10</td></tr></thead><tbody><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div><div class="fc-row fc-week fc-widget-content" style="height: 94px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-past" data-date="2015-01-11"></td><td class="fc-day fc-widget-content fc-mon fc-past" data-date="2015-01-12"></td><td class="fc-day fc-widget-content fc-tue fc-past" data-date="2015-01-13"></td><td class="fc-day fc-widget-content fc-wed fc-past" data-date="2015-01-14"></td><td class="fc-day fc-widget-content fc-thu fc-past" data-date="2015-01-15"></td><td class="fc-day fc-widget-content fc-fri fc-past" data-date="2015-01-16"></td><td class="fc-day fc-widget-content fc-sat fc-past" data-date="2015-01-17"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-past" data-date="2015-01-11">11</td><td class="fc-day-number fc-mon fc-past" data-date="2015-01-12">12</td><td class="fc-day-number fc-tue fc-past" data-date="2015-01-13">13</td><td class="fc-day-number fc-wed fc-past" data-date="2015-01-14">14</td><td class="fc-day-number fc-thu fc-past" data-date="2015-01-15">15</td><td class="fc-day-number fc-fri fc-past" data-date="2015-01-16">16</td><td class="fc-day-number fc-sat fc-past" data-date="2015-01-17">17</td></tr></thead><tbody><tr><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=ZzRkODFwaHVjb3BvODRmOTlramZvcmk1ajAgaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">WEEK 1</span></div></a></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div><div class="fc-row fc-week fc-widget-content" style="height: 94px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-past" data-date="2015-01-18"></td><td class="fc-day fc-widget-content fc-mon fc-past" data-date="2015-01-19"></td><td class="fc-day fc-widget-content fc-tue fc-past" data-date="2015-01-20"></td><td class="fc-day fc-widget-content fc-wed fc-past" data-date="2015-01-21"></td><td class="fc-day fc-widget-content fc-thu fc-past" data-date="2015-01-22"></td><td class="fc-day fc-widget-content fc-fri fc-past" data-date="2015-01-23"></td><td class="fc-day fc-widget-content fc-sat fc-past" data-date="2015-01-24"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-past" data-date="2015-01-18">18</td><td class="fc-day-number fc-mon fc-past" data-date="2015-01-19">19</td><td class="fc-day-number fc-tue fc-past" data-date="2015-01-20">20</td><td class="fc-day-number fc-wed fc-past" data-date="2015-01-21">21</td><td class="fc-day-number fc-thu fc-past" data-date="2015-01-22">22</td><td class="fc-day-number fc-fri fc-past" data-date="2015-01-23">23</td><td class="fc-day-number fc-sat fc-past" data-date="2015-01-24">24</td></tr></thead><tbody><tr><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=c2I1dmYxcWdobmI3czIzcDE5MGpsYmJxdGMgaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">WEEK 2</span></div></a></td><td></td><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=ZmptOGthdDVpaTFhN2FsdG9uMzJkdmhtMjAgaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">Project Brief Due</span></div></a></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div><div class="fc-row fc-week fc-widget-content" style="height: 94px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-past" data-date="2015-01-25"></td><td class="fc-day fc-widget-content fc-mon fc-past" data-date="2015-01-26"></td><td class="fc-day fc-widget-content fc-tue fc-past" data-date="2015-01-27"></td><td class="fc-day fc-widget-content fc-wed fc-past" data-date="2015-01-28"></td><td class="fc-day fc-widget-content fc-thu fc-past" data-date="2015-01-29"></td><td class="fc-day fc-widget-content fc-fri fc-past" data-date="2015-01-30"></td><td class="fc-day fc-widget-content fc-sat fc-past" data-date="2015-01-31"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-past" data-date="2015-01-25">25</td><td class="fc-day-number fc-mon fc-past" data-date="2015-01-26">26</td><td class="fc-day-number fc-tue fc-past" data-date="2015-01-27">27</td><td class="fc-day-number fc-wed fc-past" data-date="2015-01-28">28</td><td class="fc-day-number fc-thu fc-past" data-date="2015-01-29">29</td><td class="fc-day-number fc-fri fc-past" data-date="2015-01-30">30</td><td class="fc-day-number fc-sat fc-past" data-date="2015-01-31">31</td></tr></thead><tbody><tr><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=cWI5Z2FyanY5MnJnbXZsYTdlbHVqcWt1dmsgaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">WEEK 3</span></div></a></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div><div class="fc-row fc-week fc-widget-content" style="height: 96px;"><div class="fc-bg"><table><tbody><tr><td class="fc-day fc-widget-content fc-sun fc-other-month fc-past" data-date="2015-02-01"></td><td class="fc-day fc-widget-content fc-mon fc-other-month fc-past" data-date="2015-02-02"></td><td class="fc-day fc-widget-content fc-tue fc-other-month fc-past" data-date="2015-02-03"></td><td class="fc-day fc-widget-content fc-wed fc-other-month fc-past" data-date="2015-02-04"></td><td class="fc-day fc-widget-content fc-thu fc-other-month fc-past" data-date="2015-02-05"></td><td class="fc-day fc-widget-content fc-fri fc-other-month fc-past" data-date="2015-02-06"></td><td class="fc-day fc-widget-content fc-sat fc-other-month fc-past" data-date="2015-02-07"></td></tr></tbody></table></div><div class="fc-content-skeleton"><table><thead><tr><td class="fc-day-number fc-sun fc-other-month fc-past" data-date="2015-02-01">1</td><td class="fc-day-number fc-mon fc-other-month fc-past" data-date="2015-02-02">2</td><td class="fc-day-number fc-tue fc-other-month fc-past" data-date="2015-02-03">3</td><td class="fc-day-number fc-wed fc-other-month fc-past" data-date="2015-02-04">4</td><td class="fc-day-number fc-thu fc-other-month fc-past" data-date="2015-02-05">5</td><td class="fc-day-number fc-fri fc-other-month fc-past" data-date="2015-02-06">6</td><td class="fc-day-number fc-sat fc-other-month fc-past" data-date="2015-02-07">7</td></tr></thead><tbody><tr><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=aWZyc3N2YzRzcm1uNHA3Nm1uMG9jdWlyb28gaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">WEEK 4</span></div></a></td><td></td><td class="fc-event-container"><a class="fc-day-grid-event fc-event fc-start fc-end" href="https://calendar.google.com/calendar/event?eid=NDI3bjk2N292ZGs3OTlwcm1tNG5kaG1pbzggaGF3YWlpLmVkdV9wMjV2dXFmMGJkOG10cnZmbXVkOGhxbTVnNEBn"><div class="fc-content"> <span class="fc-title">Conceptual Plans Due</span></div></a></td><td></td><td></td><td></td><td></td></tr></tbody></table></div></div></div></div></td></tr></tbody></table></div></div></div>
</div>
</div>
<h3 class="textcentered subhead">Process for Web & Print Projects</h3>
<p class="byline textcentered">5D: Five steps for all design projects</p>
<div class="row text-center group">
<div class="one-fifth column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">1</span>
</span></span></div></div>
<h4><i class="icon-edit-1"></i> Define</h4>
<p>Define the project, problem(s), and stakeholder's primary goals via the project brief. Gather background info to define user profiles, goals, & tasks.</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">2</span>
</span></span></div></div>
<h4><i class="icon-sitemap"></i> Draft</h4>
<p>Brainstorm conceptual solutions, draft the information architecture, site maps, wireframes, prototypes, content hierarchy & structure.</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">3</span>
</span></span></div></div>
<h4><i class="icon-vector"></i> Design</h4>
<p>Visualize and communicate the UI via mood boards, type studies, color studies, prototypes, iterative mockups, & multiple rounds of refinements.</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">4</span>
</span></span></div></div>
<h4><i class="icon-code"></i> Develop</h4>
<p>Build the interactive, fully functioning product using web standard compliant, accessible, valid, semantic markup, styling, & scripting.</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">5</span>
</span></span></div></div>
<h4><i class="icon-icon-checklist3"></i> Diligence</h4>
<p>Via due diligence, fix all bugs and conduct multiple tests for quality assurance across multiple platforms, browsers, devices, and screen-sizes.</p>
</div>
</div>
<h3 class="textcentered subhead">Process for Motion Graphics & Video Projects</h3>
<p class="byline textcentered">3P: Three steps for the production of all time-based projects</p>
<div class="row text-center group">
<div class="one-third column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">1</span>
</span></span></div></div>
<h4><i class="icon-edit-1"></i> Pre-Production</h4>
<p>Writing, Story Development, Design Exploration, & Pre-Visualization</p>
</div>
<div class="one-third column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">2</span>
</span></span></div></div>
<h4><i class="icon-camera-alt"></i> Production</h4>
<p>Video / Film / Photography, Design, Animation, & Sound/Audio Recording.</p>
</div>
<div class="one-third column split">
<div class="box"><div class="outlined circled"><span class="equal"><span class="vertbox">
<span class="number">3</span>
</span></span></div></div>
<h4><i class="icon-video-1"></i> Post-Production</h4>
<p>Editing, Compositing, Sound Design, Refinement, & Rendering.</p>
</div>
</div>
<!--
<h3 class="textcentered subhead">The Projects</h3>
<p class="byline textcentered">3 hand-coded web sites from scratch</p>
<div class="row textcentered">
<div class="one-third column">
<img src="images/companyname1-home-devices-vector.png" alt="Company Name 1" class="scale-with-grid" />
<h4>Site #1</h4>
<p>A week-by-week, step-by-step introduction-level "Company Name" site.</p>
</div>
<div class="one-third column">
<img src="images/companyname2-home-devices-vector.png" alt="Company Name 2" class="scale-with-grid" />
<h4>Site #2</h4>
<p>A mid-term intermediate-level, independently coded "Company Name" site.</p>
</div>
<div class="one-third column">
<img src="images/blank-devices-vector.png" alt="" class="scale-with-grid" />
<h4>Site #3</h4>
<p>A final project custom designed and fully coded site.</p>
</div>
</div>
-->
<h3 class="textcentered subhead">The Deliverables</h3>
<p class="byline textcentered">Course Assignments</p>
<div class="row textcentered group">
<div class="one-fifth column split">
<div class="box"><div class="filled circled"><span class="equal"><span class="vertbox">
<span><i class="icon-doc-1"></i></span>
</span></span></div></div>
<h4>Project Brief</h4>
<h6 class="credit"><span>Due:</span> Week 2</h6>
<p>50 Points</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="filled circled"><span class="equal"><span class="vertbox">
<span><i class="icon-pencil-alt-1"></i></span>
</span></span></div></div>
<h4>Conceptual Plans</h4>
<h6 class="credit"><span>Due:</span> Week 4</h6>
<p>50 Points</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="filled circled"><span class="equal"><span class="vertbox">
<span><i class="icon-picture-1"></i></span>
</span></span></div></div>
<h4>Designs R1-3</h4>
<h6 class="credit"><span>Due:</span> Weeks 6, 8, & 10</h6>
<p>100 Points</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="filled circled"><span class="equal"><span class="vertbox">
<span><i class="icon-cog-alt"></i></span>
</span></span></div></div>
<h4>Drafts V1-2</h4>
<h6 class="credit"><span>Due:</span> Weeks 13 & 16</h6>
<p>100 Points</p>
</div>
<div class="one-fifth column split">
<div class="box"><div class="filled circled"><span class="equal"><span class="vertbox">
<span><i class="icon-website"></i></span>
</span></span></div></div>
<h4>Final Project</h4>
<h6 class="credit"><span>Due:</span> Week 17</h6>
<p>100 Points</p>
</div>
</div>
</div>
</section>
<section id="lessons" class="colored">
<div class="container">
<div class="sectionhead">
<h2>Lessons</h2>
</div>
<div class="accordian">
<h4>What is a Project Brief? <span class="light nomobile">The Essentials To Starting a Design Project</span> <div class="arrow"></div></h4>
<div class="collapsedbox">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>A Brief Summary</h5>
<p>A project brief is a practical and useful tool used as a first step in summarizing creative projects. It is used as foundational framework for developing strategic creative solutions to real-world project challenges.</p>
<h5>Considerations</h5>
<ul>
<li>What is the primary <em>design problem</em> that needs to be solved?</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Essential Elements to include</h5>
<ul>
<li>Project Name</li>
<li>Client Name</li>
<li>Brief Summary</li>
<li>Primary Objective(s)</li>
<li>Target Audience</li>
<li>Assets needed</li>
<li>Deliverables</li>
</ul>
<h5>Other Elements to consider</h5>
<ul>
<li>User Profiles (User Personas & Scenarios)</li>
<li>A list of key goals, features, functionalities, & technologies</li>
<li>Competitive Analysis (examples of competitor sites)</li>
<li>Precedents (similar examples to highlight/note)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordian">
<h4>How to Begin Planning? <span class="light nomobile">A Guide to Conceptual Planning</span> <div class="arrow"></div></h4>
<div class="collapsedbox" style="display: none;">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>A Plan For Success</h5>
<p>Conceptual plans are the blueprints for any design project. Conducted early in the design process, they can include any number of documents and exercises that will be helpful in communicating ideas to all stakeholders and instrumental in insuring a quality end product and user experience. The primary goal for is to map out the project using a user-centered (target audience) approach. Planning documents should try to be style/design independent, with a focus on the user's (target audience) experience, goals, & tasks to help determine the best possible presentation structure and content hierarchy.</p>
<h5>Considerations</h5>
<ul>
<li>Who is the <em>user</em> (target audience) and why are they using/viewing this product (e.g. why are they coming to this site?)</li>
<li>What information or content is the <em>user</em> (or viewer) looking for?</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Essential Elements to include</h5>
<ul>
<li>Web Projects:
<ul>
<li>Site Map</li>
<li>Wireframes</li>
</ul>
</li>
<li>Print Projects:
<ul>
<li>Sketches</li>
<li>Wireframes</li>
</ul>
</li>
<li>Time-based Projects (Motion Graphics & Video):
<ul>
<li>Storyboard</li>
<li>Story Reel (Animatic)</li>
</ul>
</li>
</ul>
<h5>Other Elements to consider</h5>
<ul>
<li>A Content Document (containing all site imagery & copy)</li>
<li>Color Studies</li>
<li>Type Studies</li>
<li>Mood Boards</li>
<li>Prototypes & Interactive Wireframes</li>
<li>A series of tests (visual & technical)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordian">
<h4>Conducting Tests <span class="light nomobile">The Importance of Early Testing </span> <div class="arrow"></div></h4>
<div class="collapsedbox" style="display: none;">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>Tests</h5>
<p>Tests are an important part of the design process for creative professionals such as UI/UX designers and front-end web developers. One of the challenges faced by many young design students, is how does one find the best solution to a particular design problem when there are multiple possible solutions? One way of finding the best solution is to conduct a series of <em>tests</em> early in the design process.</p>
<h5>Considerations</h5>
<ul>
<li>What visual elements require exploration early in the design process?</li>
<li>What technologies might be potential solutions that need to be explored and tested early in the design process?</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Example Tests to consider:</h5>
<ul>
<li>Typography Tests</li>
<li>Grid Systems</li>
<li>Design Patterns
<ul>
<li>Responsive Navigation</li>
<li>Sliders/Carousels</li>
<li>Modals/Lightboxes</li>
</ul>
</li>
<li>Third-party solutions
<ul>
<li>Front-end Frameworks</li>
<li>Jquery Plugins</li>
</ul>
</li>
</ul>
<h5>Lesson:</h5>
<a href="http://nma.kcc.hawaii.edu/gargiulo/blog/tests.html" target="_blank">
<img src="./index_files/blog-tests.jpg" alt="Tests" class="scale-with-grid">
<span class="thumblist-title">Testing: </span>
<span class="thumblist-description">The Creative Design Process of Conducting Tests</span>
</a>
</div>
</div>
</div>
</div>
<div class="accordian">
<h4>Interactive Wireframes <span class="light nomobile">An Intro to Coded Prototypes</span> <div class="arrow"></div></h4>
<div class="collapsedbox" style="display: none;">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>Wireframes</h5>
<p>Traditional wireframes (flat images) and paper prototypes are great tools to communicate to both clients and internal team members how an interface might look structurally, but they can potentially fall short in both determining and communicating the <em>user experience</em>. One quick and efficient tool is to create interactive wireframes. They have multiple advantages, such as acting as an early prototype to help designers and developers determine best practices for increased usabiltity.</p>
<h5>Considerations</h5>
<ul>
<li>What is the overall site structure and does this translate as a means of interface navigation?</li>
<li>What is the content hierarchy for each page (i.e. what content is most important to the user? what order should it be presented?)</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Essential Elements to get started</h5>
<ul>
<li>Site Map</li>
<li>Wireframes</li>
</ul>
<h5>Lesson:</h5>
<a href="http://nma.kcc.hawaii.edu/gargiulo/blog/wireframes.html" target="_blank">
<img src="./index_files/blog-wireframes.gif" alt="Wireframes" class="scale-with-grid">
<span class="thumblist-title">Interactive Wireframes: </span>
<span class="thumblist-description">An Intro to Coded Prototypes</span>
</a>
</div>
</div>
</div>
</div>
<div class="accordian">
<h4>Comp Sites <span class="light nomobile">An Interface for Client UI Mockups</span> <div class="arrow"></div></h4>
<div class="collapsedbox">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>Comp Sites</h5>
<p>One of the easiest and most effective ways to share user interface (UI) mockups for client review is a simple comp site. A comp site is basically a set of html pages designed to qucikly and easily display a series of UI mockup images inside of the browser in a manner that ensures that the image is displayed properly across platforms and browsers. The goal is to present the UI designs quickly and easily while reducing the risk of client confusion.</p>
<h5>Considerations</h5>
<ul>
<li>What is the best way to share UI designs with a client remotely?</li>
<li>How can you avoid technical problems, misunderstandings, and confusions when presenting work to a client?</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Lesson:</h5>
<a href="http://nma.kcc.hawaii.edu/gargiulo/blog/compsite.html" target="_blank">
<img src="./index_files/blog-compsite.gif" alt="Wireframes" class="scale-with-grid">
<span class="thumblist-title">Comp Sites: </span>
<span class="thumblist-description">An Interface for Client UI Mockups</span>
</a>
</div>
</div>
</div>
</div>
<div class="accordian">
<h4>Portfolio Entries <span class="light nomobile">Options for Presenting Designs</span> <div class="arrow"></div></h4>
<div class="collapsedbox">
<div class="row">
<div class="five-twelths column offset-by-one-twelth">
<h5>Portfolio Entries</h5>
<p>An important part of being a designer is showcasing one's work, but what is the best way to do so? There are no industry standard rules for how to present work in a portfolio, therefore it is up to each designer to decide how to do so, knowing that their decisions will ultimately reflect their personality (and design skills). To help figure out the best approach, try putting yourself in the client shoes and go through the full design process to find the best design solutions.</p>
<h5>Considerations</h5>
<ul>
<li>How much info do I need to prepare/provide for each project?</li>
<li>What's the best way to stage my work across different media?</li>
<li>What are the best UX design patterns for the user to view/experience my portfolio?</li>
</ul>
</div>
<div class="five-twelths column offset-by-one-twelth">
<h5>Lesson:</h5>
<a href="http://nma.kcc.hawaii.edu/gargiulo/blog/portfolioentry.html" target="_blank">
<img src="./index_files/blog-portfolioentry.jpg" alt="Wireframes" class="scale-with-grid">
<span class="thumblist-title">Portfolio Entries: </span>
<span class="thumblist-description">Options for Presenting Designs</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="lessons2" class="colored">
<div class="container">
<div class="sectionhead">
<h2>Week-by-Week</h2>
</div>
<!--<h3 class="textcentered subhead">Week-by-week</h3>
<p class="byline textcentered">Weekly Agendas, Assignments, & Lessons.</p>-->
<div class="expandablebox">
<h5>
<span class="weeknum">1</span>
<span class="weektitle"><a href="javascript:expandcollapse('week1');">Intro to the Course</a></span>
<a id="week1_arrow" class="collapsearrow" href="javascript:expandcollapse('week1');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_ids_week1.jpg" alt="">
<div class="weekintro">
<p>This week we will go over the course and the major assignments and deliverables. Lessons include an intro to the creative design & production process for interface design. </p>
<div id="week1_readmore" class="showreadmore">
<span>↓ <a href="javascript:expandcollapse('week1');">see the detailed course content for this week</a> ↓</span>
</div>
</div>
<div class="clear"></div>
<div id="week1_block" class="collapseblock">
<p class="subhead">Agenda:</p>
<ol>
<li>Introduction to the course
<ul>
<li>In this class we will go through in detail the design process of planning and designing one large scale interface design related project.</li>
</ul>
</li>
<li>Game plan for the semester
<ul>
<li>Overview of the syllabus</li>
<li>One project, eight deliverables</li>
</ul>
</li>
<li>A clarification of project deliverables.
<ul>
<li>In-class exercise: Use this <a href="http://nma.kcc.hawaii.edu/gargiulo/data/_spring_2013/ids/ids_SemesterMapWithDeliverables.pdf">semester planning pdf</a> to map out all of the deliverables and key milestones/due dates for your project for the semester. Please note that everyone's project is different, therefore the deliverables and due dates might be different for each student.</li>
</ul>
</li>
<li>We will take a look at student work from other classes that fits well within the scope of this course. </li>
<li>Group brainstorming sessions - we will hear project idea pitches from all students, then discuss and help each student by sharing thoughts, ideas, recomendations, resources, etc.</li>
</ol>
<!--<p class="subhead">Presentation:</p>
<ul class="linklist">
<li class="vt"><a href="videolessons/vl_IntroToDigitalMultimedia/index.html" target="_blank">Video Lesson :: Intro to the Course</a> - [url]
</li>
<li class="pdf"><a href="data/_spring_2011/dm/dm_icp_week1.pdf">slide presentation :: week1</a> - [.pdf]</li>
</ul>-->
<p class="subhead">The Full Design Process for Interface Design:</p>
<img src="./index_files/designprocess_for_id_white3.png" class="scale-with-grid">
<p class="subhead">The Full Design Process for Time-Based Media:</p>
<img src="./index_files/designprocess_for_time_white.png" class="scale-with-grid">
<p class="subhead">Class examples + related links:</p>
<p class="bold">CMS-driven Sites:</p>
<ul class="linklist">
<li class="url"><a href="http://school.85pixels.com/art249/final/wordpress/" target="_blank">Michael King's Chastise Records</a> - [url]</li>
<li class="url"><a href="http://school.85pixels.com/art249/" target="_blank">Michael King's Chastise Records: Process</a> - [url]</li>
</ul>
<p class="bold">Responsive Design:</p>
<ul class="linklist">
<li class="url"><a href="http://bostonglobe.com/" target="_blank">Boston Globe</a> - [url]</li>
</ul>
<p class="bold">Mobile Apps:</p>
<ul class="linklist">
<li class="url"><a href="http://nma.kcc.hawaii.edu/logoloft/" target="_blank">Logo Loft</a> - [url]</li>
<li class="url"><a href="http://shelbyburns.com/art258/logoloft/index.html" target="_blank">Logo Loft: Process</a> - [url]</li>
<li class="line"></li>
<li class="url"><a href="http://nma.kcc.hawaii.edu/dasmybus/" target="_blank">Das My Bus</a> - [url]</li>
<li class="url"><a href="http://www.mudrickmediaworks.com/art258/busapp/comp.html" target="_blank">Das My Bus: Process</a> - [url]</li>
</ul>
<p class="bold">Motion Graphics:</p>
<ul class="linklist">
<li class="url"><a href="http://www.28designs.net/art222/NMA_Promo.html" target="_blank">Kim Kitsuki's NMA ID Promo</a> - [url]</li>
<li class="url"><a href="http://www.28designs.net/art222/" target="_blank">Kim Kitsuki's NMA ID Promo: Process</a> - [url]</li>
<li class="line"></li>
<li class="url"><a href="http://www.uptoitdesigns.com/art222/proj02/index.html" target="_blank">Kat Sakata's NMA Promo</a> - [url]</li>
<li class="url"><a href="http://www.uptoitdesigns.com/art222/" target="_blank">Kat Sakata's NMA Promo: Process</a> - [url]</li>
<li class="line"></li>
<li class="url"><a href="http://tiffanyhiga.com/art222/86.html" target="_blank">Tiffany Higa's 86 Ad</a> - [url]</li>
<li class="url"><a href="http://tiffanyhiga.com/art222/" target="_blank">Tiffany Higa's 86 Ad: Process</a> - [url]</li>
</ul>
<p class="bold">Print/Graphic Design:</p>
<ul class="linklist">
<li class="url"><a href="http://arlynramos.com/" target="_blank">Arlyn Ramos's Skim Milk Campaign</a> - [url]</li>
<li class="url"><a href="http://thinktifferent.com/" target="_blank">Tiffany Higa's 86 Campaign</a> - [url]</li>
</ul>
<p class="bold">Fine Art/Installation:</p>
<ul class="linklist">
<li class="url"><a href="http://chrisgargiulo.com/archive/data/recreate/index.html" target="_blank">Chris Gargiulo's Recreate (Digital Print)</a> - [url]</li>
<li class="url"><a href="http://chrisgargiulo.com/archive/data/urbangarden/index.html" target="_blank">Chris Gargiulo's Urban Garden (Digital Print)</a> - [url]</li>
<li class="line"></li>
<li class="url"><a href="http://chrisgargiulo.com/archive/data/tagging/tagging.html" target="_blank">Chris Gargiulo's Tagging (html5+processing.js)</a> - [url]</li>
<li class="url"><a href="http://chrisgargiulo.com/archive/data/recreate/index.html" target="_blank">Chris Gargiulo's ADHD Clouds (html5+processing.js)</a> - [url]</li>
<li class="url"><a href="http://chrisgargiulo.com/archive/data/google/index.html" target="_blank">Chris Gargiulo's Digital Footprint (Flash+HYPE)</a> - [url]</li>
<li class="url"><a href="http://chrisgargiulo.com/archive/data/digitalstasis/index.html" target="_blank">Chris Gargiulo's Digital Stasis (Flash)</a> - [url]</li>
</ul>
<p class="subhead">Assignment: Project Brief<span class="due">Due: Week 2</span></p>
<ol>
<li>Set up your class web page.</li>
<li>Come to class with your project idea(s) and be prepared to pitch and discuss them during group brainstorming sessions. Important questions to address:
<ul>
<li>Who is the client?</li>
<li>How many deliverables will you be creating and what are they exactly? (clearly define all deliverables)</li>
</ul></li>
<li>Start researching your project in order to write up the Project Brief (due Week 2) and to begin your Concept Plan (due week 4) for your project.</li>
<li>Conduct as many visual and technical tests as needed to enable your project to be a success. Early tests are essential for complex technical projects.</li>
</ol>
<ul class="linklist">
<li class="pdf"><a href="http://nma.kcc.hawaii.edu/gargiulo/data/_spring_2013/ids/ids_hw_projectBrief.pdf">assignment :: Project Brief</a> - [.pdf]</li>
</ul>
</div>
</div>
<div class="expandablebox">
<h5>
<span class="weeknum">2</span>
<span class="weektitle"><a href="javascript:expandcollapse('week2');">Pre-Production - Project Briefs Due</a></span>
<a id="week2_arrow" class="collapsearrow" href="javascript:expandcollapse('week2');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_xx_workweek.jpg" alt="">
<div class="weekintro">
<p>Project Briefs are due this week. Next, you should be working on your pre-production conceptual plans.</p>
<div id="week2_readmore" class="showreadmore">
<span>↓ <a href="javascript:expandcollapse('week2');">see the detailed course content for this week</a> ↓</span>
</div>
</div>
<div class="clear"></div>
<div id="week2_block" class="collapseblock">
<p class="subhead">Agenda</p>
<ol>
<li>A clarification of conceptual plan and project deliverables.</li>
<li>We will discuss each student's game plan (deliverables and milestones) and conceptual plans for the semester.</li>
</ol>
<p class="subhead">Assignment: Conceptual Plans<span class="due">Due: Week 4</span></p>
<ol>
<li>After you have chosen your project and completed your creative brief, begin to conceptually plan your project. Start by clearly defining all deliverables and sketching what they may eventually look like. </li>
<li>Begin conducting visual and technical tests that will help determine the potential manifestations of your project.</li>
<li>Consider conducting and creating other pre-production exercises (not required as part of this course) such as creating mood boards, typography tests, early prototypes, etc.).</li>
</ol>
<ul class="linklist">
<li class="pdf"><a href="http://nma.kcc.hawaii.edu/gargiulo/data/_spring_2013/ids/ids_hw_conceptPlans.pdf">assignment :: Conceptual Plans</a> - [.pdf]</li>
</ul>
</div>
</div>
<div class="expandablebox">
<h5>
<span class="weeknum">3</span>
<span class="weektitle"><a href="javascript:expandcollapse('week3');">Work Week</a></span>
<a id="week3_arrow" class="collapsearrow" href="javascript:expandcollapse('week3');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_ids_week3.jpg" alt="">
<div class="weekintro">
<p>Work Week. You should be working on your pre-production conceptual plans.</p>
<div id="week3_readmore" class="showreadmore">
<span>↓ <a href="javascript:expandcollapse('week3');">see the detailed course content for this week</a> ↓</span>
</div>
</div>
<div class="clear"></div>
<div id="week3_block" class="collapseblock">
<p class="subhead">Assignment: Conceptual Plans<span class="due">Due: Week 4</span></p>
<ol>
<li>After you have chosen your project and completed your creative brief, begin to conceptually plan your project. Start by clearly defining all deliverables and sketching what they may eventually look like. </li>
<li>Begin conducting visual and technical tests that will help determine the potential manifestations of your project.</li>
<li>Consider conducting and creating other pre-production exercises (not required as part of this course) such as creating mood boards, typography tests, early prototypes, etc.).</li>
</ol>
<ul class="linklist">
<li class="pdf"><a href="http://nma.kcc.hawaii.edu/gargiulo/data/_spring_2013/ids/ids_hw_conceptPlans.pdf">assignment :: Conceptual Plans</a> - [.pdf]</li>
</ul>
</div>
</div>
<div class="expandablebox">
<h5>
<span class="weeknum">4</span>
<span class="weektitle"><a href="javascript:expandcollapse('week4');">Pre-Production - Concept Plans Due</a></span>
<a id="week4_arrow" class="collapsearrow" href="javascript:expandcollapse('week4');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_xx_workcrit.jpg" alt="">
<div class="weekintro">
<p>Conceptual plans are due. Next, begin transitioning from pre-production to production by working on the visual designs, graphical assets, etc. in preparation for a Round 1 visual design review.</p>
<div id="week4_readmore" class="showreadmore">
<span>↓ <a href="javascript:expandcollapse('week4');">see the detailed course content for this week</a> ↓</span>
</div>
</div>
<div class="clear"></div>
<div id="week4_block" class="collapseblock">
<p class="subhead">Agenda:</p>
<ol>
<li>Informal working critique of conceptual plans.</li>
</ol>
<p class="subhead">Assignment: Round 1 Visual Designs<span class="due">Due: Week 6</span></p>
<ol>
<li>After you have clearly defined your deliverables and visually mapped out your conceptual plans, begin working on the final look-and-feel of your project, which may vary from project-to-project, but may include visual mockups/comps, final illustrations or character designs, principle photography/video, etc. Motion design pieces require a story reel/animatic as part of a round 1 visual design.</li>
<li>Continue conducting visual and technical tests that will help determine the outcome of your project.</li>
</ol>
</div>
</div>
<div class="expandablebox">
<h5>
<span class="weeknum">5</span>
<span class="weektitle"><a href="javascript:expandcollapse('week5');">Work Week</a></span>
<a id="week5_arrow" class="collapsearrow" href="javascript:expandcollapse('week5');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_xx_workweek.jpg" alt="">
<div class="weekintro">
<p>Work Week. You should be working on all graphical assets that you will need for your project, in preparation for a Round 1 review of the visual designs for your project due next week.</p>
<div id="week5_readmore" class="showreadmore">
<span>↓ <a href="javascript:expandcollapse('week5');">see the detailed course content for this week</a> ↓</span>
</div>
</div>
<div class="clear"></div>
<div id="week5_block" class="collapseblock">
<p class="subhead">Assignment: Round 1 Visual Designs<span class="due">Due: Week 6</span></p>
<ol>
<li>Continue production of your round 1 designs in preparation for review next week. All designs should be complete and polished, ready for a hypothetical client presentation and approval meeting.</li>
<li>Continue conducting visual and technical tests that will help determine the outcome of your project.</li>
<li>Since this is a work week, please take advantage of in-class time to get 1-on-1 support time with the instructor.</li>
</ol>
</div>
</div>
<div class="expandablebox">
<h5>
<span class="weeknum">6</span>
<span class="weektitle"><a href="javascript:expandcollapse('week6');">Production - R1 Visual Designs Due</a></span>
<a id="week6_arrow" class="collapsearrow" href="javascript:expandcollapse('week6');">Expand/Collapse</a></h5>
<img class="thumb" src="./index_files/thumb_xx_workcrit.jpg" alt="">
<div class="weekintro">