forked from arduina/access_map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1007 Bytes
/
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
<html>
<head>
<title>Accessibility of the Berlin Nahverkehrssystem</title>
<link rel="stylesheet" type="text/css" href="twentytwenty.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.event.move.js"></script>
<script type="text/javascript" src="jquery.twentytwenty.js"></script>
<script type="text/javascript">
$(window).load(function() {
$("#container").twentytwenty();
});
</script>
</head>
<body>
<h1>What does Berlin look like for people in a wheelchair?</h1>
<p>This is a visualization of the Berlin Public Transport System's degree of accessibility. The idea for this comes from the Hamburg initiative <a href="http://mappable.info">Mappable</a>.<br>
You can find an elaborate How-to <a href="https://github.com/arduina/access_map/blob/master/README.md">here.</a> </p>
<div id="container">
<img src="map.jpg">
<img src="map_erased.jpg">
</div>
</body>
</html>