forked from marthar/webfall-2015
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6.html
More file actions
executable file
·891 lines (758 loc) · 21.8 KB
/
Copy path6.html
File metadata and controls
executable file
·891 lines (758 loc) · 21.8 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>We LOVE the Web</title>
<meta name="viewport" content="width=1024">
<meta name="viewport" content="width=1024">
<link rel="stylesheet" href="dist/coderdeck-core.min.css" type="text/css">
<link rel="stylesheet" id='style-theme-link' href="src/css/coderdeck.css" type="text/css" >
<script src='dist/jquery.min.js'></script>
<script src="dist/modernizr.js"></script>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
</head>
<body class="deck-container">
<script type='text/coderdeck' id='coderdeck-default'>
<html>
<head>
<script src='src/jquery.min.js'>SCRIPTEND
</head>
<body>
CODE
</body>
</html>
</script>
<script type='text/coderdeck' id='coderdeck-plain'>
<html>
<title>test</title>
<link rel="stylesheet" href="reset.css">
<body>
CODE
</body>
</html>
</script>
<script type='text/coderdeck' id='coderdeck-css-playground'>
<html>
<title>test</title>
CODE
<body>
<h1>I'm a H1 heading</h1>
<h2>I'm a H2 heading</h2>
<p>Pargraph of text <p></p>
<div class='stuff'><div> with class "stuff"</div>
<div id='my-div'><div> with id "my-div"</div>
</body>
</html>
</script>
<script type='text/coderdeck' id='coderdeck-style-example'>
<html>
<title>test</title>
<style>
CODE
</style>
<body>
<h1>I'm a H1 heading</h1>
<h2>I'm a H2 heading</h2>
<h3>Pargraph of text <p> here</p>
<div class='stuff'>I'm a div <div> with class "stuff"</div>
<div id='my-div'>I'm a <div> with id "my-div"</div>
</body>
</html>
</script>
<!-- Create any number of elements with class slide within the container -->
<article class='slide slide-subhead'>
<h1>Designing for Users</h1>
<p>Week 6: <a href='http://acacheung.github.io/webspring-2016/6.html'>http://acacheung.github.io/webspring-2016/6.html</a></p>
</article>
<article class='slide slide-list'>
<h1>Order of Business</h1>
<ol>
<li>
<h3>Reminder: Check your Slack messages!</h3>
</li>
<li>
<h3>How to validate your HTML</h3>
</li>
<li>
<h3>Review blog designs</h3>
</li>
<li>
<h3>UX Audit</h3>
</li>
<li>
<h3>Finish last week's slides</h3>
</li>
<li>
<h3>Designing for Users</h3>
</li>
<li>
<h3>User Expectations/UX</h3>
</li>
<li>
<h3>Wireframing</h3>
</li>
<li>
<h3>Exercises</h3>
</li>
</ol>
</article>
<article class='slide slide-accent'>
<h1>Review blog designs</h1>
</article>
<article class='slide slide-list'>
<h2>UX Audit: <a href="https://spotify-valentines.com/">Spotify Valentine’s</a></h2>
<ul>
<li class="slide">
<h3>WHAT your end users might want</h3>
</li>
<li class="slide">
<h3>WHY they want it</h3>
</li>
<li class="slide">
<h3>HOW to provide it to them</h3>
</li>
<li class="slide">
<h3>Usable?</h3>
</li>
<li class="slide">
<h3>Delightful?</h3>
</li>
<li class="slide">
<h3>Go through creating a playlist for your best friend to show how much you love them!</h3>
</li>
</article>
<article class='slide slide-image'>
<h1><img src="images/polaroid.png" class='top-image'/>Let's make a polaroid</h1>
</article>
<article class='slide slide-list'>
<h1>Using</h1>
<ul>
<li><h3>transform: rotate</h3></li>
<li><h3>border-radius</h3></li>
<li><h3><a href="https://css-tricks.com/snippets/css/css-box-shadow/">box-shadow</a></h3></li>
<li><h3>text-shadow</h3></li>
</ul>
</article>
<article class='slide slide-list'>
<h1>Let's make a polaroid</h1>
<p>
Let's make a polaroid (<a href='http://www.flickr.com/photos/snowpeak/4152675183/'>Image Source</a>).
What's <a href="http://html5doctor.com/the-figure-figcaption-elements/">figure and figcaption</a>?
</p>
<textarea class='coder-editor coder-editor-instant'>
<style>
figure {
margin-top: 50px;
margin-right: auto;
margin-left: auto;
width: 282px;
}
figcaption {
font-size: 20px;
font-family: Chalkboard, cursive;
font-weight: bold;
color: #444;
}
</style>
<figure>
<img src='images/birds.jpg'>
<figcaption>Those are some crazy birds!</figcaption>
</figure>
</textarea>
<script type='coder-solution'>
<style>
figure {
margin-top: 50px;
margin-right: auto;
margin-left: auto;
padding: 10px 10px 30px 10px;
width: 282px;
border: 1px solid #eee;
border-radius: 4px;
box-shadow: 5px 5px 10px #ccc;
background-color: #f3f3f3;
transform: rotate(15deg);
}
figcaption {
margin-top: 10px;
margin-right: auto;
margin-left: auto;
max-width: 200px;
font-size: 20px;
font-family: Chalkboard, cursive;
font-weight: bold;
font-style: italic;
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px #fff;
color: #444;
}
</style>
<figure>
<img src='images/birds.jpg'>
<figcaption>Those are some crazy birds!</figcaption>
</figure>
</script>
</article>
<article class='slide slide-list'>
<h2>CSS Transitions Example</h2>
<a href='http://tympanus.net/Development/IconHoverEffects/'>More Examples</a>
<textarea class='coder-editor'>
<style>
.box {
width: 50px;
height: 50px;
background-color: green;
transition-duration: .25s;
transition-property: background-color;
}
.box:hover {
background-color: red;
}
</style>
<div class='box'></div>
</textarea>
</article>
<article class='slide slide-list'>
<h2><a href="http://codepen.io/2015/popular/pens/10/">CSS3 Animations</a></h2>
<ul>
<li class="slide">
<h3>Are defined with keyframes</h3>
</li>
<li class="slide">
<h3>Have a name</h3>
</li>
<li class="slide">
<h3>Can have a number of other properties including direction, repeat, duration</h3>
</li>
<li class="slide">
<h3><a href='https://css-tricks.com/almanac/properties/a/animation/'>See the CSS Tricks almanac</a></h3>
</li>
</ul>
</article>
<article class="slide slide-image">
<h2>Pulling it all Together</h2>
<img src='images/screenshot.png'/>
</article>
<article class='slide slide-list'>
<h2>Pulling it all Together</h2>
<textarea class='coder-editor coder-editor-full'>
<style>
</style>
<header class="header">
<h1 class="logo">Logo</h1>
<nav class="top-nav">top-nav</nav>
</header>
<nav class="main-nav">
<ul>
<li>main menu</li>
<li>main menu</li>
<li>main menu</li>
</ul>
</nav>
<article class="page">
<h1>Header 1</h1>
<h2>Subhead</h2>
<p>Text goes here, remember it's length might vary, so you might not want to set a specific height. Floating might be good.</p>
<h2>Subhead</h2>
<p>ext goes here, remember it's length might vary, so you might not want to set a specific height. Floating might be good.</p>
</article>
<aside class="sidebar">
<h1>Sidebar</h1>
<ul>
<li>Sidebar list</li>
<li>Sidebar list</li>
<li>Sidebar list</li>
</ul>
</aside>
<footer class="footer">
<h1>Footer</h1>
</footer>
</textarea>
<script type='coder-solution'>
<style>
body {
margin-right: auto;
margin-left: auto;
width: 960px;
}
.header {
position: relative;
height: 120px;
background-color: #d4e0a3;
}
.logo {
margin-top: 0;
position: absolute;
left: 16px;
height: 100px;
width: 250px;
background-color: white;
}
.top-nav {
position: absolute;
right: 15px;
width: 150px;
background-color: white;
}
.main-nav {
overflow: auto;
background-color: #4f3a11;
}
.main-nav ul {
margin: 0;
padding: 0;
}
.main-nav li {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 16px;
padding: 10px;
display: block;
float: left;
background-color: white;
}
.page {
float: left;
width: 60%;
background-color: #fffac2;
margin: 20px 15px;
padding: 10px;
}
.sidebar {
margin-top: 20px;
padding: 10px;
float: right;
width: 30%;
background-color: #fffac2;
}
.footer {
overflow: auto;
clear: both;
background-color: #4f3a11;
}
.footer h1 {
margin: 15px;
width: 20%;
background-color: white;
}
</style>
<header class="header">
<h1 class="logo">Logo</h1>
<nav class="top-nav">top-nav</nav>
</header>
<nav class="main-nav">
<ul>
<li>main menu</li>
<li>main menu</li>
<li>main menu</li>
</ul>
</nav>
<article class="page">
<h1>Header 1</h1>
<h2>Subhead</h2>
<p>Text goes here, remember it's length might vary, so you might not want to set a specific height. Floating might be good.</p>
<h2>Subhead</h2>
<p>ext goes here, remember it's length might vary, so you might not want to set a specific height. Floating might be good.</p>
</article>
<aside class="sidebar">
<h1>Sidebar</h1>
<ul>
<li>Sidebar list</li>
<li>Sidebar list</li>
<li>Sidebar list</li>
</ul>
</aside>
<footer class="footer">
<h1>Footer</h1>
</footer>
</script>
</article>
<article class='slide slide-accent'>
<h1>What is User Experience Design?</h1>
</article>
<article class='slide slide-image'>
<h1><img src="images/wikipedia.png" alt="logo" class='top-image'/>Wikipedia Says:</h1>
<p class='slide'>
is the process of enhancing customer satisfaction and loyalty by improving the <b>usability<b>, <b>ease of use<b>, and <b>pleasure provided in the interaction between the customer and the product<b>. User experience design encompasses traditional human-computer interaction design, and extends it by addressing all aspects of a product or service as perceived by users. User experience is any aspect of a person's interaction with a given IT system, including the interface, graphics, industrial design, physical interaction, and the manual.
</p>
</article>
<article class='slide slide-image'>
<img src='http://40.media.tumblr.com/tumblr_lm7byjLwev1qhx5z4o1_1280.jpg'/>
</article>
<article style='background-image:url(images/mac.jpg);' class='slide slide-background-content'>
<h2>Know your audience...</h2>
</article>
<article style='background-image:url(images/pc.jpg);' class='slide slide-background-content'>
<h2>Know your audience...</h2>
</article>
<article style='background-image:url(images/pinterest.png);' class='slide slide-background-content'>
<h2>Know your content...</h2>
</article>
<article style='background-image:url(images/espn.png);' class='slide slide-background-content'>
<h2>Know your content...</h2>
</article>
<article style='background-image:url(images/newyorker.png);' class='slide slide-background-content'>
<h2>Know your content...</h2>
</article>
<article style='background-image:url(images/desktop.jpg);' class='slide slide-background-content'>
<h2>Know your medium...</h2>
</article>
<article style='background-image:url(images/tablet.jpg);' class='slide slide-background-content'>
<h2>Know your medium...</h2>
</article>
<article style='background-image:url(images/phone.jpg);' class='slide slide-background-content'>
<h2>Know your medium...</h2>
</article>
<article class='slide slide-accent'>
<h2>User Expectations</h2>
</article>
<article class='slide slide-list'>
<h2>You are designing for people...</h2>
<ul>
<li class="slide"><h3>with Modern browsers</h3></li>
<li class="slide"><h3>with old browsers</h3></li>
<li class="slide"><h3>who can’t see well</h3></li>
<li class="slide"><h3>who can’t see at all</h3></li>
<li class="slide"><h3>who visit your site every day</h3></li>
<li class="slide"><h3>who are visiting for the first time</h3></li>
<li class="slide"><h3>who aren’t people but machines (SEO)</h3></li>
</ul>
</article>
<article class='slide slide-list'>
<h2>Think about who will use the website and their needs</h2>
<ul>
<li class='slide'>
<h3>I want to buy something</h3>
</li>
<li class='slide'>
<h3>Google sent me here</h3>
</li>
<li class='slide'>
<h3>I just want your phone number</h3>
</li>
<li class='slide'>
<h3>Where are you located?</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h1>What is this?</h1>
<h2><br/><br/>
<a style='color:#0645AD; text-decoration:underline; font-family:Arial; font-weight:bold; font-size:60px;' href='#'>My Article</a>
</h2>
</article>
<article class='slide slide-subhead'>
<h1>What is this?</h1>
<h2><br/><br/>
<img src="images/buy-now.png" alt="Buy Button" />
</h2>
</article>
<article class='slide slide-subhead'>
<h1>Where do you look to log into a site?</h1>
</article>
<article class='slide slide-subhead'>
<h1>How do you go back to the Homepage?</h1>
</article>
<article class='slide slide-accent'>
<h1>Feed into<br/>User Expectations</h1>
</article>
<article class='slide slide-list'>
<h2>Good Conventions</h2>
<ul>
<li class="slide">
<h3>Underline is a link</h3>
</li>
<li class="slide">
<h3>name@something.com</h3>
</li>
<li class="slide">
<h3>massart.edu</h3>
</li>
<li class="slide">
<h3><a href="https://twitter.com/">Where is the login link?</a></h3>
</li>
<li class="slide">
<h3><a href="https://twitter.com/acacheung">What does clicking the logo do?</a></h3>
</li>
<li class="slide">
<h3><a href="http://www.nationalgeographic.com/what-the-world-eats/">What does the back button do?</a></h3>
</li>
<li class="slide">
<h3><a href="https://www.ideo.com/">Standard names “Contact”, “About”</a></h3>
</li>
<li class="slide">
<h3><a href="https://twitter.com/">Extra links - like “Privacy Policy”, “Terms of Use” are where?</a></h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>Some Bad Conventions</h2>
<ul>
<li class="slide">
<h3><a href="http://animo.designlazy.com/#aboutUs">Scroll-jacking</a></h3>
</li>
<li class="slide">
<h3><a href="http://misfit.com/?locale=en">Image Carousels</a></h3>
</li>
<li class="slide">
<h3><a href="http://www.myfonts.com/licensing/webfont/">Footers on infinite scrolls</a></h3>
</li>
<li class="slide">
<h3><a href="http://codepen.io/derekmorash/pen/XddZJY">Interior Scrollbars</a></h3>
</li>
<li class="slide">
<h3><a href="http://aldenharlow.com/">Frames</a></h3>
</li>
<li class="slide">
<h3><a href="http://thewizardofoz.warnerbros.com/#/">Auto-playing media</a></h3>
</li>
</ul>
</article>
<article class='slide slide-accent'>
<h1>Hierarchy</h1>
</article>
<article class='slide slide-statement'>
<h1>Decide what element is most important on your page and work down from there</h1>
</article>
<article class="slide slide-image">
<img src='images/mailchimp1.jpg'/>
</article>
<article class="slide slide-image">
<img src='images/mailchimp2.jpg'/>
</article>
<article class='slide slide-statement'>
<h1><br/>Only 1 element can be the most important,<br/> it's your job to make that happen<br/><a href="http://yvettesbridalformal.p1r8.net/">remember this?</a></h1>
</article>
<article class='slide slide-accent'>
<h1>Tips & Tricks</h1>
</article>
<article class='slide slide-statement'>
<h1>If you blur your focus what do you see? Is it the most most important?</h1>
</article>
<article class='slide slide-image'>
<img src='images/mac1.jpg'/>
</article>
<article class='slide slide-image'>
<img src='images/mac2.jpg'/>
</article>
<article class='slide slide-statement'>
<h1>make sure your action text <em>(or call to action)</em> is clear and obvious</h1>
</article>
<article class='slide slide-image'>
<img src='http://i.imgur.com/v9JIJ1Y.jpg'/>
</article>
<article class='slide slide-subhead'>
<h1>Hierarchy</h1>
<h3><a href="http://www.youtube.com/watch?v=Nl3OYHo2_b8&index=2&list=PLg-UKERBljNy2Yem3RJkYL1V70dpzkysC">Does the user know what to do?</a>
</h3>
</article>
<article class='slide slide-subhead'>
<h1>Time</h1>
<h3><a href="http://www.youtube.com/watch?v=biXNASoSK9s&index=14&list=PLg-UKERBljNy2Yem3RJkYL1V70dpzkysC">How Long does it take to load?</a><br/><a href="http://www.youtube.com/watch?v=Rehw8L5Cl8M&list=PLg-UKERBljNy2Yem3RJkYL1V70dpzkysC&index=18">Does it feel slow?</a>
</h3>
</article>
<article class='slide slide-subhead'>
<h1>Easy</h1>
<h3>How many clicks to get where you want to go?
</h3>
</article>
<article class='slide slide-accent'>
<h1>Information Architecture</h1>
</article>
<article class='slide slide-list'>
<h2>Things to think about</h2>
<ul>
<li class="slide">
<h3>Your site navigation - main, bottom, etc</h3>
</li>
<li class="slide">
<h3>What do users want to see?</h3>
</li>
<li class="slide">
<h3>What do users need to see?</h3>
</li>
<li class="slide">
<h3>Does the site hierarchy make sense?</h3>
</li>
<li class="slide">
<h3>How many clicks deep?</h3>
</li>
<li class="slide">
<h3>Think about normal user flow: "User Stories"</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Many restaurants are a perfect example of NOT thinking of user stories</h2>
</article>
<article class='slide slide-list'>
<h2>Restaurants</h2>
<ul>
<li><h3>They think: I want to show people how amazing the experience here is</h3></li>
<li><h3><a href='http://theoatmeal.com/comics/restaurant_website'>Actual Use Cases</a></h3></li>
</ul>
</article>
<article class='slide slide-accent'>
<h1>Universities</h1>
</article>
<article style='background-image:url(http://imgs.xkcd.com/comics/university_website.png);' class='slide slide-background'>
</article>
<article class='slide slide-accent'>
<h1>user stories & Personas</h1>
</article>
<article class='slide slide-list'>
<h2>Think about:</h2>
<ol>
<li class="slide">
<h3>Who is visiting your site (give them a name)</h3>
</li>
<li class="slide">
<h3>Their goals</h3>
</li>
<li class="slide">
<h3>How can you help them?</h3>
</li>
</ol>
</article>
<article class="slide slide-accent">
<h1>Wireframes & Sitemaps</h1>
</article>
<article style='background-image:url(images/sitemap.png);' class='slide slide-background-content'>
<h2>Sitemaps</h2>
</article>
<article class='slide slide-list'>
<h1>Why Make Sitemaps?</h1>
<ul>
<li class="slide">
<h3>Help you define the content on your site</h3>
</li>
<li class="slide">
<h3>Force you to break down all the pages and sections of your site</h3>
</li>
<li class="slide">
<h3>They help you work out how content will be organized</h3>
</li>
<li class="slide">
<h3>Help you create a better hierarchy</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h1>Wireframing</h1>
<h3>Great way to look at the big picture. Start with lower-fidelity mockups.
</h3>
</article>
<article class='slide slide-accent'>
<h1><a href='http://webdesignledger.com/inspiration/18-great-examples-of-sketched-ui-wireframes-and-mockups'>Some Great Examples</a>
</h1>
</article>
<article class='slide slide-list'>
<h1>What is Wireframing?</h1>
<ul>
<li class="slide">
<h3>Sketch out what the user experience will be like</h3>
</li>
<li class="slide">
<h3>Illustrate page layout and functionality</h3>
</li>
<li class="slide">
<h3>Demonstrate how a user will navigate the site</h3>
</li>
<li class="slide">
<h3>Identify static and dynamically generated content areas</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>Some tools</h2>
<ul>
<li class='slide'><h3><a href='http://balsamiq.com/products/mockups'>Balsamiq</a></h3></li>
<li class='slide'><h3><a href='https://gomockingbird.com/'>Mockingbird</a></h3></li>
<li class='slide'><h3><a href='http://www.omnigroup.com/products/omnigraffle/'>Omnigraffle</a></h3></li>
<li class='slide'><h3><a href='http://mashable.com/2010/07/15/wireframing-tools/'>And More!</a></h3></li>
<li class='slide'><h3>The basics: pen and paper</h3></li>
</ul>
</article>
<article class="slide slide-accent">
<h1>Some UX Specifics</h1>
</article>
<article class='slide slide-subhead'>
<h1>More Ideas</h1>
<h3><a href="http://www.goodui.org/index_v5.html">GoodUI</a></h3>
<h3><a href="http://www.nngroup.com/articles/113-design-guidelines-homepage-usability/">113 Guidlines to Homepage Usability</a></h3>
<h3><a href="http://www.nngroup.com/articles/icon-usability/">Icon Usability</a></h3>
<h3><a href="http://azumbrunnen.me/blog/improving-the-hamburger-button/">The Hamburger Icon</a></h3>
</article>
<article class="slide slide-accent">
<h1>Consistency and affordances</h1>
<p>The good and the bad</p>
</article>
<article style='background-image:url(images/lights.jpg);' class='slide slide-background-content'>
</article>
<article style='background-image:url(images/remote.jpg);' class='slide slide-background-content'>
</article>
<article style='background-image:url(images/push-pull.jpg);' class='slide slide-background-content'>
</article>
<article class='slide slide-homework' id="homework-6">
<h2>Homework</h2>
<h3 class="callout">Reading</h3>
<ul>
<li><h3><a href='http://www.smashingmagazine.com/2014/08/06/a-closer-look-at-personas-part-1/'>A Closer Look at Personas</a></h3>
</li>
<li><h3><a href='http://www.uxforthemasses.com/ux-more-than-just-the-ui/?utm_source=rss&utm_medium=rss&utm_campaign=ux-more-than-just-the-ui&utm_medium=twitter&utm_source=twitterfeed'>UX More Than Just the UI (Part 1 & 2)</a></h3>
</li>
</ul>
<h3 class="callout">More</h3>
<ul class='slide'>
<li>
<h3>Start thinking about design for final project (we will review wireframes next class)</h3>
</li>
<li>
<h3><a href="images/poster-league.zip">Start group project (have HTML ready for next class)</a></h3>
</li>
<li>
<h3><a href="https://www.epicurrence.com/">Next week's UX Audit: Epicurrence Design Conference</a></h3>
</li>
<li>
<h3>Daniel, Nicole and Rae will be presenting next week!</h3>
</li>
</ul>
</h3>
</article>
<article class='slide slide-list'>
<h1>Group project breakdown</h1>
<ol>
<li>
<h3>Globals (Join button, logo, masthead, footer)</h3>
</li>
<li>
<h3>Sidebar</h3>
</li>
<li>
<h3>Address, price, mission</h3>
</li>
<li>
<h3>Tools</h3>
</li>
<li>
<h3>Date, Event, Theme</h3>
</li>
<li>
<h3>Schedule</h3>
</li>
<li>
<h3>Join modal</h3>
</li>
</ol>
</article>
<script src='dist/coderdeck.min.js'></script>
<!-- Prettify -->
<script src="src/prettify.js"></script>
<script>
$(function() {
$.deck('.slide');
});
</script>
</body>
</html>