-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpage_index.html
More file actions
238 lines (237 loc) · 16.1 KB
/
Copy pathpage_index.html
File metadata and controls
238 lines (237 loc) · 16.1 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
<h3><span style="color: #000000;">Kursbok</span></h3>
<p><a href="https://learning.oreilly.com/library/view/javascript-the-definitive/9781449393854/">Javascript 7th Ed</a></p>
<p><a href="https://learning.oreilly.com/library/view/javascript-the-definitive/9781449393854/">Javascript 6th Ed</a></p>
<h3><span style="color: #000000;">Kodexempel</span></h3>
<p><a href="https://github.com/LenaSYS/Webbprogrammering-Examples">Kodexempel Javascript GitHub</a></p>
<p><a href="https://github.com/HGustavs/SVG-Converter-2014">Konverterare SVG till Javascript</a></p>
<p>Föreläsningar finns för nedladdning i filarkivet till vänter i menyn.</p>
<h3><span style="color: #000000;">Innehåll</span></h3>
<table style="border-collapse: collapse; width: 100.046%; height: 240.5px;" border="1">
<tbody>
<tr style="height: 52.9px;">
<td style="width: 25.0433%; height: 52.9px;">
<p>Innehåll</p>
</td>
<td style="width: 25.0433%; height: 52.9px;">Kurstillfällen</td>
<td style="width: 49.9955%; height: 52.9px;">Kodexempel</td>
</tr>
<tr style="height: 100.9px;">
<td style="width: 25.0433%; height: 100.9px;">
<p>Steg 1 Navigering<br />Steg 2 Historik<br />Steg 3 Validering</p>
</td>
<td style="width: 25.0433%; height: 100.9px;">
<p>F1, F2, H1, H2 </p>
<p>5:e-14:e Nov</p>
</td>
<td style="width: 49.9955%; height: 100.9px;">
<h4>Part 1 Examples (HTML and Javascript)</h4>
<table>
<tbody>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="3">Event Listeners</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Event%20Static%20Listener.html">Static Event Listener</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Event%20Dynamic%20Listener.html">Dynamic Event Listener</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Event%20Debug%20Listner.html">Debug Event Listener</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="2">Element Location</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Find%20Element.html">Find Element by ID / Class / Selector</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Event%20Debug%20Listner.html">Find Element using Navigation</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="8">Element Modification</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerHTML%20Static.html">Static innerHTML</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerHTML%20Dynamic.html">Dynamic innerHTML</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerText%20Static.html">Static innerText</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerText%20Dynamic.html">Dynamic innerText</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20Template%20Litteral%20Static.html">Static Template Litteral</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20Class%20GetElementByID.html">Change Class</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20CSS%20GetElementByID.html">CSS ID</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20CSS%20Iteration.html">CSS Iteration</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="5">Form Validation</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Event.html">With Form Element</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20No%20Formtag.html">Without Form Element</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Character.html">Form validation substring</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Keypress.html">Form validation on keypress</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Regexp.html">Form validation regular expression</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr style="height: 28.9px;">
<td style="width: 25.0433%; height: 28.9px;">
<p>Steg 4 Input-hantering / Animering<br />Steg 5 Koppling till API för Bokning<br />Steg 6 Local Storage</p>
</td>
<td style="width: 25.0433%; height: 28.9px;">
<p>H3 H4</p>
<p>14:e-20:e Nov</p>
</td>
<td style="width: 49.9955%; height: 100.9px;">
<h4>Part 1 Examples (HTML and Javascript)</h4>
<table>
<tbody>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="8">Animation</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Click%20Navigation.html">Clickable Navigation Transition</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effects%20Rollover.html">Rollover Basic</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effects%20Rollover%20Cell.html">Rollover Table</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Toggle%20Class.html">Toggle Effect</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Radio%20DOM%20Navigation.html">Radio Effect</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Accordion.html">Accordion Effect</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Easing.html">Easing</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/HTML%20Effect%20Easing%20Reference.html">Easing Reference</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="2">Element Location</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Find%20Element.html">Find Element by ID / Class / Selector</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Event%20Debug%20Listner.html">Find Element using Navigation</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="8">Element Modification</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerHTML%20Static.html">Static innerHTML</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerHTML%20Dynamic.html">Dynamic innerHTML</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerText%20Static.html">Static innerText</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20InnerText%20Dynamic.html">Dynamic innerText</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20Template%20Litteral%20Static.html">Static Template Litteral</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20Class%20GetElementByID.html">Change Class</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20CSS%20GetElementByID.html">CSS ID</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Modify%20CSS%20Iteration.html">CSS Iteration</a></td>
</tr>
<tr style="border-top: 2px dotted #ddd;">
<td style="vertical-align: top;" rowspan="5">Form Validation</td>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Event.html">With Form Element</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20No%20Formtag.html">Without Form Element</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Character.html">Form validation substring</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Keypress.html">Form validation on keypress</a></td>
</tr>
<tr>
<td><a href="https://github.com/LenaSYS/Webbprogrammering-Examples/blob/master/Examples%20Html/Form%20Validate%20Regexp.html">Form validation regular expression</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr style="height: 28.9px;">
<td style="width: 25.0433%; height: 28.9px;">Steg 7 Bokningshistorik med React</td>
<td style="width: 25.0433%; height: 28.9px;">F3, H5, H6</td>
<td style="width: 49.9955%; height: 28.9px;">20:e-28:e Nov</td>
</tr>
<tr style="height: 28.9px;">
<td style="width: 25.0433%; height: 28.9px;">Steg 8 Rörlig grafik med HTML5 canvas</td>
<td style="width: 25.0433%; height: 28.9px;">F4, H7, H8, H9</td>
<td style="width: 49.9955%; height: 28.9px;">28:e Nov - 08:e Dec</td>
</tr>
<tr>
<td style="width: 25.0433%;">Steg 9 Klickdetektering i HTML5 canvas</td>
<td style="width: 25.0433%;">H10, H11, H12</td>
<td style="width: 49.9955%;">08:e Dec - 15:e Dec</td>
</tr>
<tr>
<td style="width: 25.0433%;">Slutpresentation</td>
<td style="width: 25.0433%;"></td>
<td style="width: 49.9955%;">19:e Dec 8:00-12:00</td>
</tr>
</tbody>
</table>
<h3><span style="color: #000000;">Schema</span></h3>
<p><a href="https://cloud.timeedit.net/his/web/timeedit/p/pss/schedule/schema.html?tab=33&object=KT_82444252">Länk till kursschema</a></p>
<h3><span style="color: #000000;">Lärare</span></h3>
<p><span style="color: #000000;">På den här kursen undervisar:</span></p>
<p> </p>
<table style="width: 100%; border-collapse: collapse;" border="0">
<tbody>
<tr>
<td style="width: 4%; min-width: 50px; padding-right: 10px;"><img src="https://his.instructure.com/images/messages/avatar-50.png" width="50" height="50" /></td>
<td style="width: 96%;">
<p><a title="Personalsida på www.his.se" href="https://www.his.se/GUSH">Henrik Gustavsson - Lektor i datavetenskap </a> (kursansvarig)</p>
<p><a href="mailto:henrik.gustavsson@his.se">henrik.gustavsson@his.se</a>, <a href="tel:+46500448323">0500-448323</a>, Rum: PA420M</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<p><span style="color: #000000;">[annanpersonal]</span></p>
<p> </p>
<table style="width: 100%; border-collapse: collapse;" border="0">
<tbody>
<tr>
<td style="width: 4%; min-width: 50px; padding-right: 10px;"><img src="https://his.instructure.com/images/thumbnails/299727/zYIR9iMBI48G2dgfzfBRxienuB56dlqwh0FwPfWW" width="50" height="50" /></td>
<td style="width: 96%;">
<p><a title="Personalsida på www.his.se" href="https://www.his.se/BUTS">Simon Butler - Lektor i informationsteknologi </a> (examinator)</p>
<p><a href="mailto:simon.butler@his.se">simon.butler@his.se</a>, <a href="tel:+46500448393">0500-448393</a>, Rum: PA420R</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<p> </p>
<h3>Kurslitteratur</h3>
<p> </p>
<p> </p>