forked from donatuswolf/Sounds-of-Taipei
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
87 lines (72 loc) · 3.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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sounds of Taipei</title>
<meta name="description" content="Exploring a city by sound">
<link rel="author" href="https://donatuswolf.de">
<meta name="author" content="Donatus Wolf">
<meta property="og:title" content="Sounds of Taipei">
<meta property="og:description" content="Exploring a city by sound" />
<meta property="og:type" content="website">
<meta property="og:url" content="https://fh-potsdam.github.io/Sounds-of-Taipei/">
<meta property="og:site_name" content="GitHub" />
<meta property="og:image" content="https://i.imgur.com/Fe8ziBi.png">
<meta name="theme-color" content="#ec4667">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon_io/favicon-16x16.png">
<link rel="manifest" href="assets/favicon_io/site.webmanifest">
<link rel="mask-icon" href="assets/logo-day.svg" color="#ec4667">
<script type='text/javascript' src='libraries/jquery-3.2.1.min.js'></script>
<link rel='stylesheet' href='styles.css'>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500,700,900" rel="stylesheet">
<link rel='stylesheet' href='libraries/leaflet.css'>
<script type='text/javascript' src='libraries/leaflet.js'></script>
</head>
<body>
<div class="sidebar">
<div class="top">
<div class="logo"></div>
<div class="more" onclick="toggleSidebar()"></div>
</div>
<div class="center">
<p class="howto">Hover over any dot on this map of Taipei to listen to its unique sound!</p>
<ul class="legend">
<li class="item1">
<h3>General</h3>
<p>Heard all around the city</p>
</li>
<li class="item2">
<h3>Location</h3>
<p>Only heard in certain places</p>
</li>
<li class="item3">
<h3>Events</h3>
<p>Recorded at special events</p>
</li>
</ul>
</div>
<div class="bottom">
<div class="credits">
<div class="creditsleft">
<a href="https://www-en.ntut.edu.tw/bin/home.php" target="_blank">NTUT</a> •
<a href="https://github.com/FH-Potsdam/Sounds-of-Taipei" target="_blank">Github</a>
</div>
<div class="creditsright">
<a id="toggleTime" href="?time=night">toggle</a>
</div>
</div>
</div>
</div>
<a href="https://forms.gle/CxhxLbpsrDeddRCq5" target="_blank" class="addsound">+</a>
<div id="photo" class="hidden">
<p id="label">Sunset down by the river</p>
</div>
<div id="photobg" class="hidden"></div>
<div id="mapid"></div>
</body>
<script type='text/javascript' src='toggleSidebar.js'></script>
<script type='text/javascript' src='scripts.js'></script>
</html>