-
Notifications
You must be signed in to change notification settings - Fork 0
/
class1.html
776 lines (594 loc) · 22.2 KB
/
class1.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="generator" content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39">
<meta charset="utf-8">
<title>Kapitel 1 - Techniker Javascript Einführung</title>
<meta name="description" content="Kapitel 1 - Techniker Javascript Einführung">
<meta name="author" content="yfitz">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/simple.css" id="theme">
<link rel="stylesheet" href="css/custom.css">
<!-- For syntax highlighting -->
<!-- light editor --><link rel="stylesheet" href="lib/css/light.css">
<!-- dark editor -->
<!--<link rel="stylesheet" href="lib/css/dark.css">
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="plugin/accessibility-helper/css/accessibility-helper.css">-->
<!--If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
<!-- If use the PDF print sheet so students can print slides-->
<link rel="stylesheet" href="css/print/pdf.css" type="text/css" media="print">
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Einführung in JavaScript</h2><img src="images/javascript.png" alt="Javascript Logo" class="noborder" style=
"max-height:400px;">
<h3>Kapitel 1</h3>
</section>
<section>
<h2>Erste Schritte in Javascript</h2>
<div class="left-align"><br>
<h3>Einige Regeln</h3>
<ul>
<li>Ich bin hier für dich!</li>
<li>Jede Frage ist wichtig.</li>
<li>Wir helfen uns gegenseitig.</li>
<li>Viel Spass.</li>
</ul>
</div>
</section>
<section>
<h3>Was ist JavaScript?</h3>
<p>JavaScript ist nicht Java</p>
<p>JavaScript ist eine Sprache zur Clientseitigen Webprogrammierung</p><img src="images/client-server.png" alt=
"Laptop and server connected via the internet">
<p>JavaScript arbeitet mit HTML & CSS</p>
</section>
<section>
<h3>Was ist JavaScript?</h3>
<ul>
<li>Entwickelt von Brendan Eich als "LiveScript" in 1995 und umbenannt in "JavaScript"</li>
<li>Standardiziert von <b>ECMAScript</b> Spezifikationen. <a href=
"http://www.ecma-international.org/ecma-262/5.1/">ES5</a> (in 2009)
</li>
<li>Eine <b>client-seitige Sprache</b>. Der Browser liest den Code und führt in direkt aus.</li>
<li>Interfaces mit <b>HTML</b> & <b>CSS</b> lassen uns dynamische Webseiten entwickeln, die auf Benutzereingaben
reagieren.</li>
</ul>
</section>
<section>
<h3>Was kann JavaScript?</h3>
<p>Image lightboxes</p><a href="https://gyazo.com/01b0065c2feee682dbffe3d7bf4e5545"><img src=
"https://i.gyazo.com/01b0065c2feee682dbffe3d7bf4e5545.gif" alt="https://gyazo.com/01b0065c2feee682dbffe3d7bf4e5545"></a>
</section>
<section>
<h3>Was kann JavaScript?</h3>
<p>Fully featured web applications</p><a href="https://gyazo.com/1ea0791eece706f4ab9ff8213a4e1fbf"><img src=
"https://i.gyazo.com/1ea0791eece706f4ab9ff8213a4e1fbf.gif" alt="https://gyazo.com/1ea0791eece706f4ab9ff8213a4e1fbf"></a>
</section>
<section>
<h3>Was kann JavaScript?</h3>
<p>Benutzer Informationen speichern in <a href="https://en.wikipedia.org/wiki/HTTP_cookie">Cookies</a> oder in lokalen
Daten sogenannte: <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage">local
storage</a>.</p><a href="https://gyazo.com/56208a5722a6f7ab682c2baddbba8ce3"><img src=
"https://i.gyazo.com/56208a5722a6f7ab682c2baddbba8ce3.gif" alt="https://gyazo.com/56208a5722a6f7ab682c2baddbba8ce3"></a>
</section>
<section>
<h3>Was kann JavaScript?</h3>
<p>Interaktive Elemente wie Tabs, Sliders, usw.</p><a href="https://gyazo.com/4841d6f99367b28a1d6fca4395f408a2"><img src=
"https://i.gyazo.com/4841d6f99367b28a1d6fca4395f408a2.gif" alt="https://gyazo.com/4841d6f99367b28a1d6fca4395f408a2"></a>
</section>
<section>
<h3>Was kann JavaScript?</h3>
<p>Zeichnungen & Animationen</p><a href="https://gyazo.com/6e183501f7ae5df7f07d37b9513ccfb9"><img src=
"https://i.gyazo.com/6e183501f7ae5df7f07d37b9513ccfb9.gif" alt="https://gyazo.com/6e183501f7ae5df7f07d37b9513ccfb9"></a>
<p><a href="https://youtu.be/dvG9FgbzK9Y">Roboter</a></p>
</section>
<section>
<h3>Script Tags</h3>
<p>JavaScript eingebettet in HTML. Ein <b>script tag</b> sagt dem Browser hier kommt Javascript Code</p>
<pre>
<code class="html"><script>
JAVASCRIPT CODE KOMMT HIER HIN
</script>
</code>
</pre>
<h3>JavaScript Dateien</h3>
<p>Wie CSS, werden lange JavaScripte in eigene Dateien gespeichert.</p>
<pre>
<code class="html"><script src="path/to/file.js"></script>
</code>
</pre>
</section>
<section>
<h3>Lasst uns entwickeln..</h3>
<p>Erzeuge eine neue HTML Datei mit folgende, Inhalt:</p>
<pre>
<code class="html"><!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>This is my awesome JavaScript code.</p>
<script>
alert('Hello World!');
console.log('Secret message');
</script>
</body>
</html>
</code>
</pre>
</section><!-- Programming -->
<section>
<h3>Wie funktioniert JavaScript?</h3>
<div class="left-align">
<ol>
<li>Du besuchst eine Website mit Javascript im Code.</li>
<li>Dein Browser (e.g., Chrome) liest den Code Zeile für Zeile.</li>
<li>Der Browser führt jede Zeile direkt aus, die er liest.</li>
<li>Basierend auf den Anweisungen, führt der Browser Kalkulationen und Veränderungen am HTML und CSS durch.</li>
<li>Wenn der Browser eine Anweisung nicht versteht, erzeugt er eine Fehlermeldung.</li>
</ol>
</div>
</section>
<section>
<h3>Konsole</h3>
<p>In der <b>Konsole</b> sieht man was passiert.</p><img src="images/console-js.jpg" alt="Javascript Konsole" class="noborder" style="max-height:400px;">
</section>
<section>
<h3>Konsole</h3>
<ul>
<li>Öffne die Konsole.</li>
<li>In Chrome, durch die Tastenkombination:
<ul>
<li>Mac: <strong>Command + Option + J</strong></li>
<li>Windows: <strong>Control + Shift + J</strong></li>
</ul>
</li>
<li>Rufe deine Webseite auf.</li>
<li>Siehst du was in der Konsole?</li>
<li>Tippe 2 + 2 ein und Enter.</li>
</ul>
</section><!-- Using JavaScript -->
<section>
<h3>Anweisungen</h3>
<p>Jede Ausgabe auf Konsole in JS sieht wie folgt aus:</p>
<pre>
<code class="javascript">console.log('Hello World!');
console.log('I am glad to meet you');
console.log('I am fuzzy');
</code>
</pre>
<h3>Kommentare</h3>
<p>Kommentare ist die beste Dokumentation ihrer Programmierung.</p>
<pre>
<code class="javascript">/*
Lange Kommentare
in mehreren Zeilen
*/
console.log('Hello World!'); // Kurze Kommentare bis Zeilenende</code>
</pre>
</section>
<section>
<p style="text-decoration:underline;">Ausgaben auf dem Bildschirm:</p>
<p>Text in popup box anzeigen:</p>
<pre>
<code class="javascript">alert('Hello World!');
</code>
</pre>
<p>Antwort in popup box abfragen:</p>
<pre>
<code class="javascript">confirm('Wirklich - Ja oder Nein');
</code>
</pre>
<p>Eingabe in popup box abfragen:</p>
<pre>
<code class="javascript"> eingabe = prompt('Geben Sie eine Eingabe ein:');
</code>
</pre>
<p>Ausgabe einer Mitteilung auf Konsole:</p>
<pre>
<code class="javascript">console.log('Hello World!');
</code>
</pre>
<p>Text an Webseite anfügen:</p>
<pre>
<code class="javascript">document.write('Hello World!');
</code>
</pre>
</section>
<section>
<h3>Aufgabe</h3><br>
<ul>
<li>Öffne eine neue Datei <code>index.html</code>.</li>
<li>Probiere die verschiedenen Ausgaben.</li>
<li>Ergänze Kommentare</li>
</ul>
</section>
<section>
<p style="text-decoration:underline;">Eine Lösung könnte so aussehen:</p>
<pre>
<code class="html"><!DOCTYPE html>
<html>
<head>
<title>Erste HTML mit Javascript</title>
</head>
<body>
<p>Dies ist die erste HTML-datei mit JavaScript code.</p>
<script>
alert('Hello World!'); \\ Popup box
eingabe = prompt("Eingabe einfügen:");\\ Popup-box Eingabeabfrage
weiter = confirm("Weiter?"); \\ Popup-box Bestaetigung
console.log(eingabe); \\ Ausgabe auf Konsole
document.write("Ausgabe in die Webseite"); \\ Ausgabe in Webseite
</script>
</body>
</html>
</code>
</pre>
</section>
<!-- Variables -->
<section>
<h3>Variablen</h3>
<p>Variablen sind Container für Werte, die sich ändern.</p><img src="images/variable.jpg" alt="Empty glass" class=
"noborder">
</section>
<section>
<h3>Deklarieren und Initialisieren</h3>
<p style="text-align:left;">Variable deklarieren (erzeugen) mit <code>var</code> und Variablenname.</p>
<p style="text-align:left;"> (Andere Möglichkeit <code>let</code> verwenden.) </p>
<pre>
<code class="javascript">
var numberOfKittens;
let numberOfDogs;</code>
</pre>
<p>Variable einen Anfangswert geben = Initialisierung.</p>
<pre>
<code class="javascript">
var numberOfKittens = 5;</code>
</pre>
</section>
<section>
<h3> Was ist der Unterschied zwischen var und let?</h3>
<pre>
<code class="javascript">
function varTest() {
var x = 31;
if (true) {
var x = 71; // gleiche Variable!
console.log(x); // 71
}
console.log(x); // 71
}
function letTest() {
let x = 31;
if (true) {
let x = 71; // andere variable
console.log(x); // 71
}
console.log(x); // 31
}
</code>
</pre>
<p> Ausserhalb der Funktionen ist x nicht bekannt.</p>
</section>
<section>
<h3>Variablen Werte</h3>
<ul>
<li>Variable (nach der Deklaration) ohne Wert ist <code>undefined</code>.</li>
<li>Variablen können auf einen Wert gesetzt werden.</li>
<li>Variablen können unterschiedliche Typen von Daten enthalten.</li>
<li>Der Wert einer Variable kann sich ändern.</li>
</ul>
</section>
<section>
<h3>Namen von Variablen</h3>
<ul>
<li>ist case-sensitive</li>
<li>muss eindeutig sein</li>
<li>muss mit einem Buchstaben beginnen. <br>(oder auch $ oder _)</li>
<li>kann $-Zeichen, Ziffern, Buchstaben oder <code>_</code> enthalten.</li>
<li>Vermeide <a href="https://developer.mozilla.org/en/JavaScript/Reference/Reserved_Words">reservierte Wörter.</a>.
</li>
<li>Aussagekräftige Variablennamen sind wichtig für das Verständnis ihres Codes.</li>
</ul>
</section>
<!-- Data Types-->
<section>
<h3>Datentypen</h3>
<ul>
<li>
<b>string</b> Zeichenketten
<pre>
<code class="javascript">var userName = 'Jane Lane';</code>
</pre>
</li>
<li>
<b>number</b> Ganze- oder Gleitkommazahl
<pre>
<code class="javascript">var myAge = 30;</code>
</pre>
</li>
<li>
<b>boolean</b> true oder false
<pre>
<code class="javascript">var catsAreBest = true;</code>
</pre>
</li>
<li>
<b>undefined</b> kein Wert zugewiesen
<pre>
<code class="javascript">var favoriteThings;</code>
</pre>
</li>
<li>
<b>null</b> leerer Wert
<pre>
<code class="javascript">var goodPickupLines = null;</code>
</pre>
</li>
</ul>
</section><!-- Numbers-->
<section>
<p style="text-decoration:underline;">Zahlen</p>
<p style="text-align:left;">Variablen können Zahlenwerte folgende haben: </p>
<ul>
<li>Ganzezahlen (integer) </li>
<li>Dezimalzahlen (floats).</li>
</ul>
<pre>
<code class="javascript">var cats = 5;
var dogs = 9.6;
var y = 123e5; // 12300000
var z = 123e-5; // 0.00123
</code>
</pre>
<p>Zeichenketten in Zahlen umwandeln:</p>
<pre>
<code class="javascript">var string = "5.3.4abc";
var ganzeZahl = parseInt(string); // 5
var floatZahl = parseFloat(string); // 5.3
</code>
</pre>
<p>Kann nicht umgewandelt werden => </p>
<p><code>NaN</code> = Not-A-Number</p>
</section>
<section>
<h3>Arithmetische Operatoren</h3>
<table>
<thead>
<tr>
<th>Beispiel</th>
<th>Name</th>
<th>Ergebnis</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>-a</code></td>
<td>Negation</td>
<td>Gegenteil von <code>a</code>.</td>
</tr>
<tr>
<td><code>a + b</code></td>
<td>Addition</td>
<td>Summe <code>a</code> und <code>b</code>.</td>
</tr>
<tr>
<td><code>a - b</code></td>
<td>Subtraction</td>
<td>Differenz von <code>a</code> und <code>b</code>.</td>
</tr>
<tr>
<td><code>a * b</code></td>
<td>Multiplikation</td>
<td>Product von <code>a</code> und <code>b</code>.</td>
</tr>
<tr>
<td><code>a / b</code></td>
<td>Division</td>
<td>Quotient von <code>a</code> und <code>b</code>.</td>
</tr>
<tr>
<td><code>a % b</code></td>
<td>Modulus</td>
<td>Rest bei Division von <code>a</code> und <code>b</code>.</td>
</tr>
<tr>
<td><code>++a</code></td>
<td>Increment um 1</td>
<td>Summe von <code>a</code> und <code>1</code>.</td>
</tr>
<tr>
<td><code>a-=b</code></td>
<td>Differenz</td>
<td>Differenz von <code>a</code> und <code>b</code> a zugewiesen.</td>
</tr>
</tbody>
</table>
</section><!-- Strings -->
<section>
<h3>Strings</h3>
<p>Variablen können Zeichenketten(strings) enthalten. Die Zeichenketten stehen in einfachen oder doppelten Anführungszeichen.</p>
<pre>
<code class="javascript">
var hisName = 'Struppy';
var herName = "Mausi";
</code>
</pre>
<p>Ein Anführungszeichen <b>escape</b> mit Backslash</p>
<pre>
<code class="javascript">
console.log('Ich ein Zeichen\' hier');
</code>
</pre>
</section>
<section>
<h3>Zeichenketten Operatoren</h3>
<p>Zeichenketten zusammenfügen mit a <code>+</code>, der concatenation Operator.</p>
<pre>
<code class="javascript">var kittensName = 'Fluffy ';
var fullName = kittensName + 'McDougle';
console.log(fullName); // Outputs 'Fluffy McDougle'
</code>
</pre>
<p>An Zeichenkette am Ende anfügen mit <code>+=</code>.</p>
<pre>
<code class="javascript">var kittensName = 'Admiral ';
kittensName += 'Snuggles';
console.log(kittensName); // Outputs 'Admiral Snuggles'
</code>
</pre>
</section>
<section>
<h3>Kombiniere Zeichenketten und Zahlen</h3>
<p>In Konkatenation von Zeichenketten und Zahlen, werden Zahlen wie Zeichenketten behandelt.</p>
<pre>
<code class="javascript">var numberOfFruit = 6;
var typeOfFruit = 'bananas';
var allTheFruit = 'I have ' + numberOfFruit + ' ' + typeOfFruit + '!';
console.log(allTheFruit);
</code>
</pre>
</section>
<section>
<h3>Aufgabe</h3>
<p>Schreibe ein Programm, welches das Trinkgeld in einem Lokal berechnet. Es soll:</p>
<ul>
<li>Eine Variable für den Rechnungsbetrag <b>pre_tip</b> und eine <b>tip_prozent</b>.</li>
<li>Berechne den kompleten Rechnungsbetrag.</li>
<li>Ausgabe sowas wie "Komplete Rechnungsbetrag, einschließlich Trinkgeld, ist 14.50Euro".</li>
<li>Bonus: Verwende <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed"
target="_blank"><code>toFixed()</code></a> um auf zwei Dezimalstellen zu runden.
</li>
</ul>
</section>
<section>
<h3>Diskussion?</h3>
<p>Was ist die Gefahr wenn man keine Deklaration der Variable braucht?</p>
<p> Deshalb auch wenn es anders geht -> Empfehlung: <br/>'use strict;'</p>
<p> alle Variable müssen deklariert werden.</p>
</section>
<!-- Final slides-->
<section>
<h3>Referenzen</h3>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide" target="_blank">JavaScript Guide</a>, from the
Mozilla Developers Network.
</li>
<li>
<a href="http://www.codecademy.com/tracks/javascript" target="_blank">Code Academy</a>, mit interactiven Javascript Beispiele.
</li>
<li>
<a href="http://jsforcats.com/">JavaScript For Cats,</a> Basics für cats.
</li>
<li>
<a href=" https://www.w3schools.com/js/"> W3Schools JavaScript,</a> Basics und TryIt Beispiele.
</li>
</ul>
</section>
<section>
<h3>Fragen?</h3>
<ol>
<li> Wie wird Javascript in HTML eingebunden und interpretiert? </li>
<li> Welche Funktionen erzeugen eine Bildschirmausgabe? </li>
<li> Welche zwei Kommentare gibt es? </li>
<li> Variable deklarieren bzw. initialisieren heisst...? Was ist in Javascript anders? </li>
<li> Unterschied zwischen String, Integer oder Float? </li>
<li> Variablennamen müssen mit ... beginnen und aus ... bestehen. </li>
<li> Wozu dienen parseInt und parseFloat ? </li>
<li> Operation + bezüglich Strings und Zahlen?</li>
</ol>
<a href="JS.html" target="_blank">Anfang</a>
</section>-->
</div>
</div>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
// Display controls in the bottom right corner
controls: true,
// Display a presentation progress bar
progress: true,
// Display the page number of the current slide
slideNumber: true,
// Push each slide change to the browser history
history: true,
// Enable keyboard shortcuts for navigation
keyboard: true,
// Enable the slide overview mode
overview: true,
// Vertical centering of slides
center: true,
// Enables touch navigation on devices with touch input
touch: true,
// Loop the presentation
loop: false,
// Change the presentation direction to be RTL
rtl: false,
// Randomizes the order of slides each time the presentation loads
shuffle: false,
// Turns fragments on and off globally
fragments: true,
// Flags if the presentation is running in an embedded mode,
// i.e. contained within a limited portion of the screen
embedded: false,
// Flags if we should show a help overlay when the questionmark
// key is pressed
help: true,
// Flags if speaker notes should be visible to all viewers
showNotes: false,
// Number of milliseconds between automatically proceeding to the
// next slide, disabled when set to 0, this value can be overwritten
// by using a data-autoslide attribute on your slides
autoSlide: 0,
// Stop auto-sliding after user input
autoSlideStoppable: true,
// Use this method for navigation when auto-sliding
autoSlideMethod: Reveal.navigateNext,
// Enable slide navigation via mouse wheel
mouseWheel: false,
// Hides the address bar on mobile devices
hideAddressBar: true,
// Opens links in an iframe preview overlay
previewLinks: false,
// Transition style
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Transition speed
transitionSpeed: 'default', // default/fast/slow
// Transition style for full page slide backgrounds
backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom
// Number of slides away from the current that are visible
viewDistance: 3,
// Parallax background image
parallaxBackgroundImage: '', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
// Parallax background size
parallaxBackgroundSize: '', // CSS syntax, e.g. "2100px 900px"
// Number of pixels to move the parallax background per slide
// - Calculated automatically unless specified
// - Set to 0 to disable movement along an axis
parallaxBackgroundHorizontal: null,
parallaxBackgroundVertical: null
});
</script>
</body>
</html>