forked from poisonnuke/VeroneseRestauration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 2.77 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
<!DOCTYPE html>
<html lang="de">
<head>
<title>Veronese Restauration</title>
<meta charset="utf8">
<link rel="stylesheet" href="scripts/jQRangeSlider-5.7.2/css/iThing.css" type="text/css">
<link rel="stylesheet" href="styles/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="styles/layout.css" type="text/css">
</head>
<body>
<a href="restauration.html">
<div id="maindiv" style="position: fixed; top: -5vh; left: 0; padding-top: 7em;">
<div style="position: absolute; width:100%; height:180px">
<div style="color: #FFF; text-decoration: none;left: 0;right: 0;margin-left: auto;margin-right: auto;font-size: 64pt;width: 80vw;text-align: center; padding-top: 0.5em; text-shadow: -3px -3px 8px #333, 3px -3px 8px #333, -3px 3px 8px #333, 3px 3px 8px #333;">
Veronese - Der Restaurationsprozess
</div>
</div>
<video id="eyeCatcher" width="1920" height="780" preload autoplay loop style="max-width:100%; max-height: 70vh;">
<source src="introvideo.mp4" />
<source src="introvideo.webm" />
</video>
<img src="startButton.png" style="cursor:pointer; position:fixed; top: 64vh; right: 7vw; width: 4vw; height: 4vw;" />
<table style="left: 0;right: 0;margin-left: auto;margin-right: auto;width: 80vw; margin-top: 2em; background-color: #423222; border-radius: 0.1vh; border: 1px solid; border-top-color: #5d4935; border-left-color: #5d4935; border-right-color: #271d14; border-bottom-color: #271d14; box-shadow: 3px 3px 10px 2px rgba(0,0,0,0.86);">
<tr><td width="50%" style="vertical-align: top; padding: 1em; padding-right:2em; text-align: justify; color: #dde4ea;">
<strong>"Die Madonna der Familie Cuccina"</strong>
<br />
Zwischen 2016 und 2017 wurden von den Staatlichen Kunstsammlungen Dresden umfangreiche Restaurierungsarbeiten am Gemälde von Paolo Veronese (1528–1588) durchgeführt. Mittels aufwändigen Methoden näherten sich die Restauratoren wieder einem ästhetischen Erscheinungsbild von Veroneses spannenden Werkes an.
</td><td width="50%" style="vertical-align: top; padding: 1em; padding-right:2em; text-align: justify; color: #dde4ea;">
<strong> </strong>
<br />
Im folgenden erhalten sie einen Überblick über die einzelnen technischen Methoden, die zur Restaurierung angewendet wurden. Klicken sie zum Start auf eine beliebige Stelle auf dem Bildschirm.
</td>
</div></a>
</body>
<script type="text/javascript">
var mainElement = document.getElementById("maindiv");
mainElement.addEventListener('contextmenu', function(ev) {
ev.preventDefault();
return false;}, false);
mainElement.addEventListener("touchstart", touchHandleStart, false);
mainElement.addEventListener("touchmove", touchHandleStart, false);
function touchHandleStart(e) {
if(e.touches.length > 1) e.preventDefault();
return false;
}
</script>
</html>