forked from joerglohrer/Comic-erstellen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (159 loc) · 4.25 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
<!DOCTYPE html>
<html>
<head>
<title>Die Geschichte vom eigenen Comic</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Hier sind die Styles für dein Comic definiert: -->
<style>
body {
background-color: #efefef;
font-family: "Comic Sans MS", sans-serif;
line-height: 1.2;
text-align: center;
padding: 40px 0 0 20px;
}
h1 {
text-transform: uppercase;
font-size: 40px;
color: #d02626;
}
.comic {
max-width: 826px;
margin: 60px auto 0;
}
.scene {
width: 250px;
height: 250px;
border: 3px solid black;
background: white;
margin: 8px;
display: inline-block;
position: relative;
}
.scene img {
width: 100%;
height: 100%;
display: block;
}
.caption {
padding: 10px;
margin: 0;
position: absolute;
left: 0;
right: 0;
background: #e2e971;
text-align: left;
top: 0;
}
.caption.bottom {
bottom: 0;
top:auto;
border-top: 2px solid black;
}
.caption.top {
top: 0;
border-bottom: 2px solid black;
}
.speech {
width: 40%;
border-radius:50%;
border: 2px solid black;
margin: 0;
position: absolute;
z-index: 1;
background: snow ;
padding: 20px;
top: -15px;
text-align: center;
}
/* Advanced CSS for the speech pointer */
.speech:after {
border-color: snow transparent;
border-style: solid;
border-width: 13px 13px 0;
bottom: -11px;
content: "";
display: block;
left: 50%;
margin-left:-14px;
position: absolute;
width: 0;
}
.speech:before {
border-color: black transparent;
border-style: solid;
border-width: 16px 16px 0;
bottom: -15px;
content: "";
display: block;
left: 50%;
margin-left:-17px;
position: absolute;
width: 0;
}
.speech.left {
left:-15px;
}
.speech.right {
right:-15px;
}
footer {
clear: both;
}
</style>
</head>
<body>
<!-- Schritt 1: Hier kannst du den Titel eingeben -->
<h1>Die Geschichte des eigenen Comics</h1>
<!--
Hier beginnt dein Comic.
Das 'comic' <div> umschließt jede Comic 'scene' um sie zusammenzuhalten.
-->
<div class="comic">
<!--
Schritt 2, 3, and 4:
Das untenstehende HTML ist die erste Szene 'scene'.
Starte, indem du die Bildadressen änderst auf eigene Fotos
-->
<div class="scene">
<p class="caption bottom">Am Morgen ist die Luft noch kalt und frisch...</p>
<p class="speech right">Endlich mal durchatmen!</p>
<img src="cc0-pics/1.jpg" alt="" />
</div>
<!-- Hier kommt die zweite Szene-->
<div class="scene">
<p class="caption top">...so trat ich den Weg nach Hause an.</p>
<img src="cc0-pics/2.jpg" alt="" />
</div>
<!-- Dies ist die dritte Szene -->
<div class="scene">
<p class="speech left">Sprechblasen! WOW!</p>
<img src="cc0-pics/3.jpg" alt="" />
</div>
<!-- Dies ist die vierte Szene -->
<div class="scene">
<p class="speech right">Was ist das?</p>
<img src="cc0-pics/4.jpg" alt="" />
</div>
<!-- Dies ist die fünfte Szene -->
<div class="scene">
<img src="cc0-pics/5.jpg" alt="" />
</div>
<!-- Dies ist die sechste Szene -->
<div class="scene">
<p class="caption bottom">Ende!</p>
<img src="cc0-pics/6.jpg" alt="" />
</div>
<!--
Hier ist das Comic zu Ende :(
Willst du ein größeres Comic erstellen?
Schritt 6:
Kopiere das HTML von einer Szene 'scene' und mache unten weiter
-->
</div>
<!-- Disclaimer für die Bilder -->
<footer>
Alle Bilder sind unter CC0-Lizenz von <a href="https://pixabay.com/de/">https://pixabay.com/de/</a> Den Code und die Anleitung findest du ebenfalls unter CC0-Lizenz <a href="https://github.com/empeiria/Comic-erstellen">hier auf GitHub</a>
</footer>
</body>
</html>