-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (76 loc) · 3.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Virtueller Rundgang</title>
<script src="js/three.min.js"></script>
<script src="js/panolens.min.js"></script>
<!-- https://unpkg.com/micromodal@0.4.6/dist/micromodal.min.js -->
<script src="js/micromodal.min.js"></script>
<!-- https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.3/pixi.min.js -->
<script src="js/pixi.min.js"></script>
<script src="js/rundgang.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/micromodal.css">
</head>
<body>
<div id="progress-box" style="display: none;">
<div id="progress-bar" style="width: 20%"></div>
</div>
<div class="modal micromodal-slide" id="modal-info" aria-hidden="true">
<div class="modal__overlay" tabindex="-1" data-micromodal-close>
<div class="modal__container" role="dialog" aria-modal="true" aria-labelledby="modal-info-title">
<header class="modal__header">
<h2 class="modal__title" id="modal-info-title">
Interaktiver Piloty-Rundgang
</h2>
<button class="modal__close" aria-label="Close modal" data-micromodal-close></button>
</header>
<main class="modal__content" id="modal-info-content">
<a href="https://github.com/d120/rundgang">rundgang</a> ist ein Projekt der Fachschaft Informatik an der
TU Darmstadt zur Digitalen Winterophase 2020.
<hr>
Bilder © 2020 S. Blümer, K. Otto.<br>Die Rechteinhaber erlauben der Fachschaft Informatik die Bilder dieses
Rundgangs an Studierende des FB20 für eigene Projekte zu lizensieren. Schreibt dazu bitte eine Mail an
<a href="mailto:ophase-rundgang@d120.de">ophase-rundgang@d120.de</a>. Verwendungen außerhalb der TU benötigen
außerdem die Zustimmung der <a href="mailto:presse@tu-darmstadt.de">Pressestelle der TU</a>.
<hr>
Uses software from:
<ul>
<li><a href="https://github.com/pchen66/panolens.js">Panolens.js</a> (MIT)</li>
<li><a href="https://github.com/mrdoob/three.js">three.js</a> (MIT)</li>
<li><a href="https://github.com/tweenjs/tween.js">tween.js</a> (MIT)</li>
<li><a href="https://github.com/pixijs/pixi.js">PixiJS</a> (MIT)</li>
<li><a href="https://github.com/ghosh/micromodal">micromodal</a> (MIT)</li>
</ul>
Icons by Google, licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0</a><br>
<hr>
Share: <a id="share-link" href="#">---</a>
</main>
</div>
</div>
</div>
<div class="modal micromodal-full micromodal-slide" id="modal-map" aria-hidden="true">
<div class="modal__overlay" tabindex="-1" data-micromodal-close>
<div class="modal__container" role="dialog" aria-modal="true" aria-labelledby="modal-map-title">
<header class="modal__header">
<h2 class="modal__title" id="modal-map-title">
Robert-Piloty-Gebäude
</h2>
<button class="modal__close" aria-label="Close modal" data-micromodal-close></button>
</header>
<div class="modal__content" id="modal-map-content"></div>
<footer id="modal-map-footer" class="modal__footer"></footer>
</div>
</div>
</div>
<div id="viewer"></div>
<!--<a id="minimap" href="plan.html">Minimap</a>-->
<script>
MicroModal.init();
const container = document.getElementById('viewer');
RUNDGANG.setup(container);
</script>
</body>
</html>