-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
230 lines (216 loc) · 8.28 KB
/
index.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
<!doctype html>
<html>
<head>
<!-- Metainformationen -->
<meta charset="utf-8">
<title>Projektpräsentation Hackathon</title>
<meta name="description" content="Projektpräsentation für den Online-Hackathon">
<meta name="author" content="Frank Zinsli">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Integration CSS -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/moon.css">
<link rel="stylesheet" href="css/style.css">
<!-- Integration Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto&display=swap" rel="stylesheet">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="lib/icon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="lib/icon//apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="lib/icon//apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="lib/icon//apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="lib/icon//apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="lib/icon//apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="lib/icon//apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="lib/icon//apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="lib/icon//apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="lib/icon//android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="lib/icon//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="lib/icon//favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="lib/icon//favicon-16x16.png">
<link rel="manifest" href="lib/icon//manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="lib/icon//ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<!--====== Einzelne Slides ======-->
<!-- Startseite -->
<section id="startseite" data-menu-title="Startseite" data-background="lib/image/calendar.jpg">
<h1><strong>Projektpräsentation</strong><br><br>Einfacher Login zu einer Kalender App</h1>
<br>
<h3>Eine kurze Übersicht über das Projekt und dessen Aufbau</h3>
<br>
<p>
<small>Präsentation von <a href="http://frankzinsli.ch">Frank Zinsli</a> </small>
</p>
</section>
<!-- Ziel des Projekts -->
<section>
<section id="ziel-des-projekts" data-menu-title="Ziel des Projekts" data-background="lib/image/target.jpg">
<h2>Ziel des Projekts</h2>
<br>
<ul>
<li style="list-style-type:none;">
<i class="fas fa-mobile-alt"></i>
<strong>WebApp programmieren mit Vue</strong>
</li>
<ul>
<div class="fragment">
<hr>
<li style="list-style-type:none;"><p><strong>Tag 1</strong></p></li>
</div>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-sign-in-alt"></i>
Login-Funktion via Firebase
</li>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-sign-out-alt"></i>
Logout-Funktion in der App
</li>
<div class="fragment">
<li style="list-style-type:none;"><p><strong>Tag 1 & 2</strong></p></li>
<li style="list-style-type:none;">
<i class="far fa-calendar-alt"></i>
Kalender App
</li>
<ul>
<li class="fragment" style="list-style-type: none;">
<i class="fas fa-robot"></i>
Funktionen (hinzufügen, ändern, löschen)
</li>
</ul>
</div>
</ul>
</ul>
</section>
<section id="webtechnologien" data-menu-title="Webtechnologien" data-background="lib/image/webtecnic.jpg">
<h2>Benötigte Webtechnologien</h2>
<table>
<tbody>
<tr>
<td>
<a href="https://github.com/" target="_blank">
<img height="65px" src="lib/image/icon-github.png" alt="Github icon" style="border: none;">
</a>
</td>
<td>
<a href="https://pages.github.com/" target="_blank">
<img height="65x" src="lib/image/icon-github-pages.png" alt="Github Pages icon" style="border: none;"">
</a>
</td>
</tr>
<tr>
<td>
<a href="https://vuejs.org/" target="_blank">
<img height="65x" src="lib/image/icon-vuejs.png" alt="Vue JS icon" style="border: none;">
</a>
</td>
<td>
<a href="https://router.vuejs.org/" target="_blank">
<img height="65x" src="lib/image/icon-vue-router.png" alt="Vue Router icon" style="border: none;">
</a>
</td>
</tr>
<tr>
<td>
<a href="https://vuetifyjs.com/en/" target="_blank">
<img height="65x" src="lib/image/icon-vuetify.png" alt="Vuetify icon" style="border: none;">
</a>
</td>
<td>
<a href="https://firebase.google.com/" target="_blank">
<img height="65x" src="lib/image/icon-firebase.png" alt="Google Firebase icon" style="border: none;">
</a>
</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<section id="vorarbeiten" data-menu-title="Vorarbeiten" data-background="lib/image/preparation.jpg">
<h2>Vorarbeiten</h2>
<br>
<ul>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-check"></i>
Firebase Projekt erstellt
</li>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-check"></i>
Vue Projekt erstellt
</li>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-check"></i>
Vuetify & Router hinzugefügt
</li>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-check"></i>
Login Formular eingerichtet
</li>
<li class="fragment" style="list-style-type:none;">
<i class="fas fa-check"></i>
Router/Routen eingerichtet
</li>
</ul>
<li class="fragment" style="list-style-type: none;">
<a href="https://frankie1996.github.io/Hackathon/" target="_blank">
<img height="65x" src="lib/image/icon-github-pages.png" alt="Github Pages icon" style="border: none;">
</a>
</li>
</section>
<section id="vorschau" data-menu-title="Vorschau" data-background="lib/image/preview.jpg">
<h3>Vorschau der Vorarbeiten</h3>
<br>
<iframe
src="https://frankie1996.github.io/Hackathon/"
style="border:0px #ffffff none;"
name="iframe-vorschau"
scrolling="yes"
frameborder="1"
marginheight="0px"
marginwidth="0px"
height="550px"
width="600px"
allowfullscreen
></iframe>
</section>
</section>
<section id="ende" data-menu-title="Ende" data-background="lib/image/end.jpg">
<h2>Ende der Präsentation</h2>
<br>
<p>Danka für d Ufmerksamkait!</p>
</section>
</div>
</div>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
hash: true,
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/highlight/highlight.js' },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/menu/menu.js' },
{ src: 'plugin/d3js/d3js.js' },
]
});
</script>
</body>
</html>