-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslides.html
executable file
·699 lines (607 loc) · 22.1 KB
/
slides.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
<!DOCTYPE html>
<html>
<head>
<title>Google IO 2012</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!--This one seems to work all the time, but really small on ipad-->
<!--<meta name="viewport" content="initial-scale=0.4">-->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" media="all" href="theme/css/default.css">
<link rel="stylesheet" media="all" href="shared/shared.css">
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="theme/css/phone.css">
<style>
.segue {
background-position: center;
background-repeat: no-repeat;
}
.graph-centered,
.vert-centered {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.graph-centered {
left: 60%;
}
.browser-graph .browser-circle {
-webkit-transition: color 2s, background-color 2s;
-ms-transition: color 2s, background-color 2s;
-moz-transition: color 2s, background-color 2s;
-o-transition: color 2s, background-color 2s;
transition: color 2s, background-color 2s;
}
.browser-graph .text-percent {
-webkit-transition: opacity 2s;
-ms-transition: opacity 2s;
-moz-transition: opacity 2s;
-o-transition: opacity 2s;
transition: opacity 2s;
}
.browser-circles {
left: 50%;
top: 55%;
width: 800px;
height: 500px;
}
.browser-circle {
border: 10px solid #aaa;
width: 150px;
height: 150px;
border-radius: 85px;
text-align: center;
position: absolute;
line-height: 150px;
color: white;
}
.browser-circle.chrome {
background-color: #dc3912;
left: 315px;
top: 0;
}
.browser-circle.ff {
background-color: #ff9900;
top: 130px;
left: 125px;
}
.browser-circle.safari {
background-color: #109618;
left: 185px;
bottom: 0;
}
.browser-circle.opera {
background-color: #990099;
right: 185px;
bottom: 0;
}
.browser-circle.ie {
background-color: #3366cc;
top: 130px;
right: 125px;
}
.browser-circles .circle-text {
font-size: 75px;
color: black;
display: block;
opacity: 0;
-webkit-transition: opacity 2s;
-ms-transition: opacity 2s;
-moz-transition: opacity 2s;
-o-transition: opacity 2s;
transition: opacity 2s;
}
</style>
<base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script data-main="js/slides" src="js/require-1.0.8.min.js"></script>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<slide class="logoslide nobackground">
<article class="flexbox vcenter">
<span><img src="images/google_developers_logo.png"></span>
</article>
</slide>
<slide class="title-slide segue nobackground">
<aside class="gdbar"><img src="images/google_developers_icon_128.png"></aside>
<!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
<hgroup class="auto-fadein">
<h1 data-config-title><!-- populated from slide_config.json --></h1>
<h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
<p data-config-presenter><!-- populated from slide_config.json --></p>
</hgroup>
</slide>
<slide>
<div style="text-align: center; display: inline-block; width: 49%;">
<h2>Greg Schechter</h2>
<h2>The Web Warrior</h2>
<img src="images/greg.png" height="450">
<h3>schechter@youtube.com<h3>
</div>
<div style="text-align: center; display: inline-block; width: 49%;">
<h2>Zoltan Szego</h2>
<h2>Phone Wrangler</h2>
<img src="images/zszego-android.png" height="450">
<h3>zszego@google.com<h3>
</div>
</slide>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
What's Google IO about?
</h2>
</article>
</slide>
<slide class="fill nobackground" style="background-image: url(images/interns.jpg)">
</slide>
<slide class="fill nobackground" style="background-image: url(images/coolcat.jpg)">
<hgroup>
<h2 class="white">I R one C00LZ Kat</h2>
</hgroup>
<footer class="source black">http://www.flickr.com/photos/scjn/4564274827/</footer>
</slide>
<slide>
<hgroup>
<h2>Last year's coolness</h2>
</hgroup>
<article>
<iframe data-src="http://www.youtube.com/embed/VUQSoHFMD8c?rel=0"></iframe>
</article>
</slide>
<slide>
<hgroup>
<h2>This year's awesome hardware</h2>
</hgroup>
<article class="flexbox vcenter">
<p>
<img src="images/nexus.png">
</p>
</article>
</slide>
<slide>
<hgroup>
<h2>Put them together</h2>
</hgroup>
<article class="flexbox vcenter">
<p>
<img src="images/nexuschrome.png">
</p>
</article>
</slide>
<slide>
<hgroup>
<h2>Put them together</h2>
</hgroup>
<article class="flexbox vcenter">
<p>
<img src="images/nexusopera.png">
</p>
</article>
</slide>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
Is the coolness ready to use?
</h2>
</article>
</slide>
<slide class="fill nobackground" style="background-image: url(images/helmetcat.jpg)">
<hgroup>
<h2 class="white">I's ready for battlez</h2>
</hgroup>
<footer class="source white">http://www.flickr.com/photos/mycoolpics/92033686/</footer>
</slide>
<slideholder data-shared-slides="html5-intro-group"></slideholder>
<slide class="segue quote nobackground">
<article class="flexbox vleft">
<h2 class="black">
Who can use this stuff?
</h2>
</article>
</slide>
<slide class="segue quote nobackground">
<article class="flexbox vleft">
<h2 class="black">
Depends on your users
</h2>
</article>
</slide>
<style>
.care-graph[data-step-on="0"] .browser-circle,
.care-graph[data-step-on="1"] .ie {
background-color: #444;
}
.care-graph[data-step-on="3"] .ie {
background-color: #444;
background-image: -webkit-linear-gradient(top, transparent 10%, #36C 10%);
}
.care-graph .text-school,
.care-graph .text-job,
.care-graph .text-youtube {
display: none;
}
.care-graph[data-step-on="1"] .text-school,
.care-graph[data-step-on="2"] .text-job,
.care-graph[data-step-on="3"] .text-youtube {
display: block;
}
</style>
<slide class="nobackground browser-graph care-graph" data-number-of-steps="3" data-step-on="0">
<hgroup>
<h2 class="black">
What users I prioritize development for
</h2>
<h3 class="text-school black">
When I was in school
</h3>
<h3 class="text-job black">
My last job
</h3>
<h3 class="text-youtube black">
YouTube
</h3>
</hgroup>
<article>
<div class="graph-centered browser-circles">
<div class="browser-circle chrome">Chrome</div>
<div class="browser-circle ff">Firefox</div>
<div class="browser-circle safari">Safari</div>
<div class="browser-circle opera">Opera</div>
<div class="browser-circle ie">IE</div>
</div>
</article>
</slide>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
Why HTML5?
</h2>
</article>
</slide>
<slide class="segue quote nobackground" style="background-image: url(images/clouds.jpg); background-color: black;">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<svg height="400px" fill="#FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220.5 199.5">
<path d="M32.8,0L25.4,37.0 176.0,37.0 171.3,60.9 20.6,60.9 13.3,97.9 163.9,97.9 155.5,140.1 94.8,160.2 42.2,140.1 45.8,121.8 8.8,121.8 0,166.2 87.0,199.5 187.3,166.2 200.6,99.4 203.3,86.0 220.4,0z"/>
</svg>
<h2 class="centered white" style="margin-top: 80px">
CSS3 Styling
</h2>
<footer class="source">http://www.flickr.com/photos/dannykboyd/5048495262/</footer>
</article>
</slide>
<slide>
<hgroup>
<h2>Rounded Corners</h2>
</hgroup>
<article>
<pre class="prettyprint" data-lang="css">
<style>
.somebox {
border-radius: 3px;
}
</style>
</pre>
</article>
<article>
<p>With awesomeness</p>
<div style="border: 10px solid #444; border-radius: 20px; width: 300px; height: 100px;"></div>
<p>Without awesomeness</p>
<div style="border: 10px solid #444; width: 300px; height: 100px;"></div>
</article>
</slide>
<style>
.transitions .a2 {
height: 0px;
opacity: 0;
}
.transitions .awesome.a2 {
-webkit-transition: height 1s, opacity 1s 1s;
-moz-transition: height 1s, opacity 1s 1s;
-o-transition: height 1s, opacity 1s 1s;
transition: height 1, opacity 1s 1s;
}
.transitions .a1,
.transitions[data-step-on="1"] .a2 {
height: 40px;
opacity: 1;
}
</style>
<slide class="transitions" data-number-of-steps="1">
<hgroup>
<h2>Transitions</h2>
</hgroup>
<article>
<pre class="prettyprint" data-lang="css">
<style>
.somebox {
-webkit-transition: height 1s, opacity 1s 1s;
-moz-transition: height 1s, opacity 1s 1s;
-ms-transition: height 1s, opacity 1s 1s;
-o-transition: height 1s, opacity 1s 1s;
transition: height 1, opacity 1s 1s;
}
</style>
</pre>
</article>
<article style="display: inline-block; height: 100px;">
<p>With Awesomeness</p>
<div style="border: 3px solid #444; border-radius: 3px; padding: 5px;">
<div class="a1">Awesome Information</div>
<div class="a2 awesome">New Awesome Information</div>
</div>
</article>
<article style="display: inline-block; height: 100px;">
<p>Without Awesomeness</p>
<div style="border: 3px solid #444; border-radius: 3px; padding: 5px;">
<div class="a1">Awesome Information</div>
<div class="a2">New Awesome Information</div>
</div>
</article>
</slide>
<slide>
<hgroup>
<h2>What CSS3 gets us</h2>
</hgroup>
<article>
<ul class="build">
<li>Enhance the user experience</li>
<li>Less code</li>
<li>Faster preformance</li>
<li>Less wasted development time and less hacks</li>
<li>The experience without it is still good</li>
</ul>
</article>
</slide>
<slide class="segue quote nobackground">
<article class="flexbox vleft">
<h2 class="black">
Why HTML5?
</h2>
</article>
</slide>
<slide class="segue quote nobackground">
<article class="flexbox vleft">
<h2 class="black">
When HTML5?
</h2>
</article>
</slide>
<style>
.css3-graph[data-step-on="0"] .browser-circle,
.css3-graph[data-step-on="2"] .ie {
background-color: #444;
}
.css3-graph[data-step-on="1"] .ie {
background-color: #36c;
background-image: -webkit-linear-gradient(top, #444 50%, transparent 50%);
}
.css3-graph[data-step-on="2"] .ie {
background-image: -webkit-linear-gradient(top, #444 50%, transparent 50%);
}
.css3-graph h3.text-round,
.css3-graph h3.text-trans {
display: none;
}
.css3-graph[data-step-on="1"] h3.text-round,
.css3-graph[data-step-on="2"] h3.text-trans {
display: block;
}
.css3-graph[data-step-on="1"] div.text-round,
.css3-graph[data-step-on="2"] div.text-trans {
opacity: 1;
}
</style>
<slide class="nobackground css3-graph browser-graph" data-number-of-steps="2" data-step-on="0">
<hgroup>
<h2 class="black">
Who can use the css3 coolness.
</h2>
<h3 class="text-round black">
Rounded Corners
</h3>
<h3 class="text-trans black">
Transitions
</h3>
</hgroup>
<article>
<div class="graph-centered browser-circles">
<div class="browser-circle chrome">Chrome</div>
<div class="browser-circle ff">Firefox</div>
<div class="browser-circle safari">Safari</div>
<div class="browser-circle opera">Opera</div>
<div class="browser-circle ie">IE</div>
<div class="text-round vert-centered circle-text">~85%</div>
<div class="text-trans vert-centered circle-text">~70%</div>
</div>
</article>
</slide>
<slide class="segue quote nobackground" style="background-image: url(images/clouds.jpg); background-color: black;">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<svg height="400px" fill="#fff" xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 278.28 278.31">
<path d="M272.4,114.38L232.28,97.74l16.52-39.89c-4.22-5.90-8.78-11.48-13.80-16.56c-0.30-0.32-0.60-0.65-0.92-0.97 c-0.51-0.51-1.07-1-1.63-1.52c-4.91-4.82-10.31-9.19-16.00-13.29L176.56,42.01L159.93,1.90 c-14.45-2.44-29.03-2.50-43.14-0.35c-0.26,0.03-0.48,0.05-0.69,0.07c-0.61,0.09-1.20,0.22-1.75,0.35 L97.72,41.99L57.60,25.39c-11.98,8.55-22.39,18.83-30.89,30.44c-0.08,0.12-0.18,0.24-0.27,0.37 c-0.35,0.48-0.69,0.98-1.02,1.49l16.57,40.00L1.88,114.34c-2.40,14.45-2.48,28.99-0.35,43.09 c0.03,0.25,0.05,0.52,0.10,0.76c0.07,0.59,0.19,1.16,0.30,1.74l40.06,16.58l-16.57,39.99 c3.81,5.34,7.92,10.46,12.39,15.15c0.79,0.83,1.54,1.70,2.37,2.52c0.57,0.59,1.22,1.13,1.83,1.70 c4.82,4.69,10.13,8.94,15.7,12.93l39.97-16.56l16.58,40.05c0.59,0.12,1.22,0.23,1.82,0.37 c0.14-0.02,0.32,0.01,0.47,0.03c14.17,2.18,28.78,2.11,43.33-0.31l16.62-40.12l40.02,16.58 c0.52-0.31,1.03-0.66,1.52-1.03c0.15-0.09,0.30-0.22,0.47-0.35c11.51-8.46,21.78-18.82,30.32-30.77l-16.62-40.14 l40.06-16.58c0.10-0.57,0.23-1.18,0.34-1.80c0.02-0.18,0.02-0.37,0.05-0.55 C274.88,143.47,274.82,128.89,272.4,114.38z M239.98,144.63l-42.22,17.49l0.06,0.16l-0.14,0.05l17.50,42.20 c-3.26,3.80-6.81,7.32-10.63,10.63l-42.22-17.47l-0.05,0.14l-0.14-0.07l-17.48,42.2 c-4.99,0.37-9.97,0.35-15.02,0.02l-17.50-42.22l-0.12,0.05l-0.07-0.16l-42.35,17.55 c-0.44-0.37-0.93-0.70-1.37-1.11c-1.40-1.24-2.72-2.65-4.05-4.00c-1.33-1.33-2.72-2.61-3.99-4.02 c-0.37-0.40-0.71-0.92-1.09-1.37l17.52-42.35l-0.14-0.07l0.07-0.13l-42.23-17.49 c-0.33-5.04-0.36-10.05,0.03-15.02l42.18-17.47l-0.04-0.13l0.12-0.05L59.09,69.73 c3.31-3.81,6.84-7.37,10.62-10.62l42.22,17.47l0.05-0.12l0.12,0.05l17.50-42.22c5.04-0.35,10.04-0.35,15.03,0.02 l17.47,42.22l0.18,0.07l42.22-17.49c1.83,1.61,3.59,3.33,5.36,5.06c1.78,1.81,3.56,3.63,5.22,5.56l-17.47,42.20 l0.14,0.05l-0.06,0.16l42.21,17.47C240.34,134.60,240.35,139.61,239.98,144.63z M172.59,122.50l-0.06-0.12 l10.23-24.62c-1.87-2.21-3.97-4.26-6.19-6.23l-24.66,10.20l-0.03-0.06l-0.08,0.02l-10.20-24.64 c-2.91-0.23-5.83-0.23-8.77,0l-10.21,24.63l-0.07,0.00l-0.04,0.03l-24.65-10.17c-2.20,1.87-4.25,3.94-6.23,6.15 l10.23,24.67l-0.08,0.03l0.03,0.09l-24.73,10.26c-0.03,0.31-0.08,0.68-0.10,1.00 c-0.05,1.09-0.01,2.21-0.02,3.31c0,1.09-0.04,2.22,0.05,3.32c0,0.34,0.02,0.68,0.08,1.03l24.73,10.24l-0.00,0.11 l0.05,0.03l-10.19,24.65c1.88,2.20,3.98,4.25,6.21,6.15l24.63-10.20l0.02,0.10l0.09-0.03l10.21,24.65 c2.96,0.23,5.88,0.23,8.78,0l10.20-24.65l0.08,0.03l0.05-0.09l24.63,10.18c2.22-1.90,4.27-3.97,6.19-6.17 l-10.20-24.63l0.07-0.05l-0.03-0.09l24.63-10.20c0.10-1.48,0.12-3.00,0.14-4.45c0-1.44-0.02-2.89-0.12-4.30 L172.59,122.50z M137.15,153.76c-9.18,0-16.63-7.44-16.63-16.63c0-9.18,7.44-16.63,16.63-16.63s16.63,7.44,16.63,16.63 C153.78,146.31,146.33,153.76,137.15,153.76z"/>
</svg>
<h2 class="centered white" style="margin-top: 10px">
Performance &<br>Integration
</h2>
<footer class="source">http://www.flickr.com/photos/dannykboyd/5048495262/</footer>
</article>
</slide>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
Let's talk Uploads
</h2>
</article>
</slide>
<slide class="fill nobackground" style="background-image: url(images/youtubeupload.png)">
</slide>
<slide>
<hgroup>
<h2>XHR Uploads</h2>
</hgroup>
<article class="smaller">
<pre class="prettyprint" data-lang="javascript">
<script>
function upload(blobOrFile) {
var xhr = new XMLHttpRequest();
xhr.open('POST', '/server', true);
xhr.onload = function(e) { ... };
// Listen to the upload progress.
var progressBar = document.querySelector('progress');
xhr.upload.onprogress = function(e) {
if (e.lengthComputable) {
progressBar.value = (e.loaded / e.total) * 100;
progressBar.textContent = progressBar.value; // Fallback for unsupported browsers.
}
};
xhr.send(blobOrFile);
}
</script>
</pre>
</article>
</slide>
<style>
.xhr-demo .progress-bar {
background-color: white;
border: 1px solid #CCCCCC;
display: inline-block;
height: 15px;
padding: 1px;
vertical-align: middle;
width: 400px;
}
.xhr-demo .progress-bar-fill {
background-color: #6483DC;
background-repeat: repeat-x;
display: block;
height: 15px;
width: 0%;
}
.xhr-demo[data-step-on="1"] .progress-bar-fill {
-webkit-transition: width 0s 4s;
}
.xhr-demo[data-step-on="1"] .bar2 .progress-bar-fill {
-webkit-transition: width 4s;
}
.xhr-demo[data-step-on="1"] .progress-bar-fill {
width: 100%;
}
</style>
<slide class="xhr-demo" data-number-of-steps="1">
<hgroup>
<h2>XHR Uploads</h2>
</hgroup>
<article>
<h3 style="font-size: 150%">Oldness</h3>
<span>Upload progress</span>
<div class="progress-bar"><span class="progress-bar-fill"></span></div>
<h3 style="font-size: 150%; margin-top: 100px">Newness</h3>
<span>Upload progress</span>
<div class="progress-bar bar2"><span class="progress-bar-fill"></span></div>
</article>
</slide>
<slide>
<hgroup>
<h2>Why is XHR Uploads an improvement</h2>
</hgroup>
<article>
<ul class="build">
<li>Richer user experience with progress updates</li>
<li>Multiple file uploads</li>
<li>Resumable uploads</li>
<li>No plugin required for advanced features</li>
</ul>
</article>
</slide>
<style>
.xhr-graph[data-step-on="0"] .browser-circle,
.xhr-graph[data-step-on="1"] .ie {
background-color: #444;
}
.xhr-graph[data-step-on="1"] .text-percent {
opacity: 1;
}
</style>
<slide class="nobackground browser-graph xhr-graph" data-number-of-steps="1" data-step-on="0">
<hgroup>
<h2 class="black">
Who can use the XHR upload coolness.
</h2>
</hgroup>
<article>
<div class="graph-centered browser-circles">
<div class="browser-circle chrome">Chrome</div>
<div class="browser-circle ff">Firefox</div>
<div class="browser-circle safari">Safari</div>
<div class="browser-circle opera">Opera</div>
<div class="browser-circle ie">IE</div>
<div class="text-percent vert-centered circle-text">~75%</div>
</div>
</article>
</slide>
<slide class="fill nobackground" style="background-image: url(images/cooldog.jpg); background-position: center;">
<hgroup>
<h2 class="white">Time to up the coolness</h2>
</hgroup>
<footer class="source">http://www.flickr.com/photos/tjc/4320473610/</footer>
</slide>
<slideholder data-shared-slides="multimedia-title"></slideholder>
<slideholder data-shared-slides="mobile-intro-group"></slideholder>
<slideholder data-shared-slides="mobile-source-group"></slideholder>
<slideholder data-shared-slides="mobile-power-group"></slideholder>
<slideholder data-shared-slides="mobile-unorganied"></slideholder>
<slideholder data-shared-slides="appcache-group"></slideholder>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
So is the coolness ready?
</h2>
</article>
</slide>
<slide class="segue quote nobackground">
<aside class="gdbar right bottom"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft">
<h2 class="black">
Yes
</h2>
<h3 class="black">And not only do your users want it, they need it</h3>
</article>
</slide>
<slide class="thank-you-slide segue nobackground">
<aside class="gdbar right"><img src="images/google_developers_icon_128.png"></aside>
<article class="flexbox vleft auto-fadein">
<h2><Thank You!></h2>
</article>
<p class="auto-fadein" data-config-contact>
Greg Schechter<br>Zoltan Szego<br>
<a href="www.youtube.com/dev">www.youtube.com/dev</a>
</p>
</slide>
<slide class="fill nobackground" style="background-image: url(images/questions.jpg)">
<hgroup>
<h2 class="white">can haz question?</h2>
</hgroup>
<footer class="source white">http://www.flickr.com/photos/cloudzilla/378829651/</footer>
</slide>
<slide class="logoslide dark nobackground">
<article class="flexbox vcenter">
<span><img src="images/google_developers_logo_white.png"></span>
</article>
</slide>
<slide class="backdrop"></slide>
</slides>
</body>
</html>