forked from pearlchen/LLC-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 3
/
lunch_break.html
136 lines (114 loc) · 5.43 KB
/
lunch_break.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ladies Learning Code - Intro to JavaScript</title>
<meta name="viewport" content="width=1280">
<!-- CoderDeck core and extension CSS files -->
<link rel="stylesheet" href="src/deck.js/core/deck.core.css" type="text/css">
<link rel="stylesheet" href="src/deck.js/extensions/navigation/deck.navigation.css">
<link rel="stylesheet" href="src/deck.js/extensions/status/deck.status.css">
<link rel="stylesheet" href="src/deck.js/extensions/hash/deck.hash.css">
<link rel="stylesheet" href="src/deck.js/extensions/menu/deck.menu.css">
<link rel="stylesheet" href="src/css/prettify.css">
<link rel="stylesheet" href="src/css/deck.coder.css">
<link rel="stylesheet" href="src/codemirror/lib/codemirror.css">
<link rel="stylesheet" href="src/codemirror/theme/default.css">
<!-- Custom for LLC -->
<link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Podkova' rel='stylesheet' type='text/css'>
<link rel="stylesheet" id='style-theme-link' href="src/css/coderdeck.css" type="text/css" >
<style type="text/css"></style>
</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-style-example'>
<html>
<title>test</title>
<style>CODE</style>
<body>
</body>
</html>
</script>
<div id="presentation">
<!-- **************************************** -->
<!-- SLIDE: -->
<article class='slide slide-subhead'>
<h1>Regroup Before Lunch</h1>
<p><strong>Learn from our mistakes!</strong></p>
<p>Name something that you did while writing code that caused an error. What were you attempting to do and what were your assumptions when doing it? How did you fix it?</p>
<p>
What are some questions or issues you are having with the material covered so far?
</p>
</article>
<!-- new slide -->
<article class='slide slide-subhead'>
<h1>Lunch time!</h1>
<p>Come back in an hour.</p>
<p style="width: 80%; margin: auto auto; font-size: 1.5em; padding-top: 30px; color: #666;">While you're resting your brain, check out the next couple of slides for great examples of JavaScript.</p>
<p style="width: 80%; margin: auto auto; font-size: 1.2em; padding-top: 30px; color: #666;">(Even try turning off your JavaScript to see how boring the web gets.)</p>
</article>
<!-- SLIDE: ARCADE FIRE VIDEO -->
<article class='slide slide-list'>
<h2>Some JavaScript Inspiration...</h2>
<p>(Note: Requires use of your laptop camera for head tracking!)</p>
<p align="center">
<a href="http://www.movikantirevo.com/" target="_blank">
<img src="assets/CirqueDuSoleil.png" width="672" height="567" alt="Cirque du Soleil's Movi Kanti Revo" class="centered" /></a></p>
</article>
<!-- SLIDE: ARCADE FIRE VIDEO -->
<article class='slide slide-list'>
<h2>Some JavaScript Inspiration...</h2>
<p>And check out <a href="http://www.creativebloq.com/web-design-tips/examples-of-javascript-1233964" target="_blank">30 top examples of JavaScript</a> compiled by Creative Bloq.</p>
<p align="center">
<a href="http://www.creativebloq.com/web-design-tips/examples-of-javascript-1233964" target="_blank">
<img src="assets/OneMillionTowers.jpg" width="580" height="326" alt="NFB's One Millionth Tower" class="centered" /></a></p>
</article>
<!-- SLIDE: -->
<article class='slide slide-subhead'>
<h1>The Ladies Learning Code Mentors</h1>
<p>(Aren't they awesome?)</p>
</article>
<!-- SLIDE: JS THEORY Part 2 -->
<article class='slide slide-subhead'>
<h1>Now Back To Your Regularly Programmed Workshop...</h1>
</article>
<!-- SLIDE: Next section -->
<article class='slide slide-list'>
<p class="centered vertically_centered"><a href="js_conditionals.html"><img src="assets/next_section_icon.gif" width="230" height="70" alt="Click to go to next section" /></a></p>
</article>
<!-- **************************************** -->
</div>
<!-- END div id=presentation -->
<script src='src/jquery.min.js'></script>
<script src="src/modernizr.js"></script>
<!-- Update these paths to point to the correct files. -->
<script src="src/jquery.tmpl.min.js"></script>
<script src="src/deck.js/core/deck.core.js"></script>
<!-- Code Mirror -->
<script src="src/codemirror/lib/codemirror.js"></script>
<script src="src/codemirror/mode/xml/xml.js"></script>
<script src="src/codemirror/mode/css/css.js"></script>
<script src="src/codemirror/mode/javascript/javascript.js"></script>
<script src="src/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<!-- Prettify -->
<script src="src/prettify.js"></script>
<!-- Deck Core and extensions -->
<script src="src/deck.js/extensions/status/deck.status.js"></script>
<script src="src/deck.js/extensions/navigation/deck.navigation.js"></script>
<script src='src/deck.coder.js'></script>
<script src="src/deck.js/extensions/hash/deck.hash.js"></script>
<script src="src/deck.js/extensions/menu/deck.menu.js"></script>
<script>
$(function() {
$.deck('.slide');
});
</script>
</body>
</html>