-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (39 loc) · 1.54 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Uber Randomizer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<section id="main" class='main-section'>
<header>
<h1>Uber Randomizer</h1>
<h2>Make you life less flat</h2>
</header>
<div id="circle" class="circle-wrapper">
<svg class="circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle class="circle-button" r="50%" cx="50%" cy="50%"></circle>
</svg>
<svg id="circleLine" class="circle" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle class="circle-loading" r="50%" cx="50%" cy="50%" clip-path="url(#clipPath)"></circle>
<clipPath id="clipPath">
<circle cx="50%" cy="50%" r="47%"></circle>
<rect x="0" y="0" width="100%" height="50%"></rect>
</clipPath>
</svg>
<div class="circle-phrase" id="btn">GO Eat!</div>
</div>
</section>
<section id="result" class="result hide">
<h2 id="placeName" class="venue-name"></h2>
<p id="placeAddress" class="venue-address"></p>
<div id="mapCanvas" class="map-canvas"></div>
</section>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="./scripts.js"></script>
</body>
</html>