-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubbles.html
106 lines (103 loc) · 3.5 KB
/
bubbles.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
<!DOCTYPE html>
<html>
<head>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-46280799-1', 'isochrone.com.ua');
ga('send', 'pageview');
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gisrone-first isochrone map creator in the web!</title>
<meta name="description" content="Gisrone-first isochrone map creator in the web!" />
<title>Area</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Russo+One|Roboto+Slab:400,300,100&subset=cyrillic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/icons.css" />
<link rel="stylesheet" type="text/css" href="css/interface.css" />
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
</head>
<body>
<div id="map"></div>
<div class="container">
<nav id="bt-menu" class="bt-menu">
<a href="#" class="bt-menu-trigger">
<span>Menu</span>
</a>
<ul>
<li>
<label>Origin</label>
</li>
<li>
<input type="text" class="address">
</a>
</li>
<li>
<label>Time</label>
</li>
<li>
<input type="text" class="time">
</li>
<li>
<button class="show">Go!</button>
</li>
<li>
<button class="md-trigger" data-modal="modal-1">Help</button>
</li>
<li>
<label>Select transport</label>
</li>
<li>
<select class="transport">
<option value="driving">Driving</option>
<option value="walking">Walking</option>
</select>
</li>
</ul>
<ul>
<li><a href="https://twitter.com/Gisorne" class="bt-icon icon-twitter">Twitter</a>
</li>
</ul>
</nav>
</div>
<div class="md-modal md-effect-1" id="modal-1">
<div class="md-content">
<h3>Help</h3>
<div>
<p>With this application, you can quickly determine where you can get in a given time</p>
<ul>
<li>
<strong>Origin:</strong>In this field you have to input a origin location.</li>
<li>
<strong>Time:</strong>Here you input time.</li>
<li><strong>Go!:</strong>Press this button to win.</li>
</ul>
<button class="md-close">Close me!</button>
</div>
</div>
</div>
<div class="md-overlay"></div>
</div>
<script src="http://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="js/main.js"></script>
<script src="vendor/js/modernizr.custom.js"></script>
<script src="vendor/js/classie.js"></script>
<script src="vendor/js/modalEffects.js"></script>
</body>
<script src="vendor/js/borderMenu.js"></script>
</html>