-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (179 loc) · 4.83 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Set your title here -->
<title>Photografie Compact</title>
<link rel="stylesheet" href="css/cssReset.css" />
<link rel="stylesheet" href="css/framework.css?v=1" />
<!-- Add your stylesheet(s) here - increase the v= number in case of caching issues -->
<link rel="stylesheet" href="css/style.css?v=1" />
<!-- that is what finally makes the webapp installable -->
<link rel="manifest" href="manifest.json" />
<!-- for those old safari that cannot interpret manifest.json, we got some legacy meta tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="translucent" />
<meta name="apple-mobile-web-app-title" content="Photocomp" />
<!-- and we add some icon support for the oldies -->
<link
rel="apple-touch-icon"
href="assets/app-icon-48x48.png"
sizes="48x48" />
<link
rel="apple-touch-icon"
href="assets/app-icon-144x144.png"
sizes="144x144" />
<link
rel="shortcut icon"
href="assets/app-icon-192x192.png"
sizes="192x192" />
<link
rel="shortcut icon"
href="assets/app-icon-256x256.png"
sizes="256x256" />
<link
rel="shortcut icon"
href="assets/app-icon-512x512.png"
sizes="512x512" />
</head>
<body>
<!-- FIXED BAR -->
<div id="identity" data-layout="isFixedTop hasLightDropshadow">
<button
id="lag_navi_hamburger"
onclick="indicateClick(this)"></button>
<figure>
<img src="assets/Logo.svg" class="logo" alt="“logo“" />
</figure>
</div>
<!-- Home -->
<div class="Home_Container">
<h1>Home</h1>
<p class="Text_Home">
Great that you’re here! <br />
Here you can find everything about photography.</p
>
</div>
<!-- SLIDER -->
<section
class="splide"
data-splide='{"type":"loop", "pagination":true, "autoplay":true, "speed":1000}'>
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<div class="mixed-content">
<figure>
<img
src="img/camera2.jpg"
alt="Camera2"
width="1100"
height="880"
loading="lazy" />
</figure>
<div class="text-overlay">
<h3>Camera settings</h3>
<ul>
<li>Focal length </li>
<li> Crop factor</li>
<li>Exposure triangle</li>
</ul>
<a
href="./Camera_settings.html"
class="slider-link"
>Details</a
>
</div>
</div>
</li>
<li class="splide__slide">
<div class="mixed-content">
<figure>
<img
src="img/camera3.jpg"
alt="Camera3"
width="1100"
height="880"
loading="lazy" />
</figure>
<div class="text-overlay">
<h3>Technic</h3>
<ul class="ul_slider">
<li class="liste_slider"
>Analog vs digital photography</li
>
</ul>
<a
href="./AnalogueDigital.html"
class="slider-link"
>Details</a
>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- HOCHWERTIGER CONTENT -->
<div id="blende" data-layout="view appearsIfVisible">
<h2>Blende</h2>
<p> Blende ist Teil des Belichtungsdreiecks. </p>
</div>
<!-- NAVIGATION -->
<nav id="lag_navigation" data-layout="ComesFromRight CenterContent">
<ul>
<li>
<a
href="#blende"
onclick="toggleBodyClass('lag_navi_hamburger--is-clicked')"
>Blende</a
>
</li>
<li>
<a
href="#brennweite"
onclick="toggleBodyClass('lag_navi_hamburger--is-clicked')"
>Brennweite</a
>
</li>
<li>
<a
href="#iso"
onclick="toggleBodyClass('lag_navi_hamburger--is-clicked')"
>ISO Wert</a
>
</li>
<li>
<a
href="./AnalogueDigital.html"
onclick="toggleBodyClass('lag_navi_hamburger--is-clicked')"
>Analog / Digital</a
>
</li>
</ul>
</nav>
<div class="footer-menu">
<a href="./index.html" class="footer-item">
<img src="assets/home_icon.png" alt="Home" />
<span>Home</span>
</a>
<a href="#legal" class="footer-item">
<img src="assets/legal_icon.png" alt="Legal" />
<span>Legal</span>
</a>
<a href="#technic" class="footer-item">
<img src="assets/technical_icon.png" alt="Technic" />
<span>Technic</span>
</a>
</div>
<!-- Always at the End:
Add your javascript file(s) here - increase the v= number in case of caching issues -->
<script type="text/javascript" src="js/slider.js?v=1"></script>
<script type="text/javascript" src="js/app.js?v=1"></script>
</body>
</html>