-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrop_factor.html
130 lines (120 loc) · 3.49 KB
/
crop_factor.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
<!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>Crop factor</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"
style="background-color: #fcb819"
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>
<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="content-container">
<h1 class="page-title" style="color: #ffcc00">Crop factor</h1>
<img
src="assets/legal_icon.png"
alt="Sensor Size Comparison"
class="content-image" />
<p class="description">
However, a full-frame image sensor is about 63% or 1.6 times
larger than an APS-C format image sensor.
</p>
</div>
<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>