-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
88 lines (59 loc) · 2.79 KB
/
Copy pathindex.php
File metadata and controls
88 lines (59 loc) · 2.79 KB
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="Jquery/jquery-1.9.1.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDkiG0Cf46ZW6vqvZytWl0RPimm8ImDRRo&sensor=true&libraries=places"></script>
<script type="text/javascript" src="App.js"></script>
<script type="text/javascript" src="jquery.hammer.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
</head>
<body>
<div id="Phone">
<div id="Map"></div>
<div class="DetailLayer"></div>
<div class="RateLayer">
<table>
<tr>
<td class="title">Waiting</td>
<td>
<ul class='star-rating'>
<li><a href='#' title='Rate this 1 star out of 5' class='one-star'>1</a></li>
<li><a href='#' title='Rate this 2 stars out of 5' class='two-stars'>2</a></li>
<li><a href='#' title='Rate this 3 stars out of 5' class='three-stars'>3</a></li>
<li><a href='#' title='Rate this 4 stars out of 5' class='four-stars'>4</a></li>
<li><a href='#' title='Rate this 5 stars out of 5' class='five-stars'>5</a></li>
</ul>
</td>
</tr>
<tr>
<td class="title">Ratio</td>
<td>
<div data-role="rangeslider">
<input class="Slider" min="0" max="100" step="1" value="50" type="range">
</div>
</td>
</tr>
<tr>
<td class="title">Price</td>
<td>
<ul class='star-rating'>
<li><a href='#' title='Rate this 1 star out of 5' class='one-star'>1</a></li>
<li><a href='#' title='Rate this 2 stars out of 5' class='two-stars'>2</a></li>
<li><a href='#' title='Rate this 3 stars out of 5' class='three-stars'>3</a></li>
<li><a href='#' title='Rate this 4 stars out of 5' class='four-stars'>4</a></li>
<li><a href='#' title='Rate this 5 stars out of 5' class='five-stars'>5</a></li>
</ul>
</td>
</tr>
</table>
</div>
<div class="Location"><img src="img/location.png"></div>
<div class="Rate"><img src="img/rate.png"></div>
<input id="Search">
</div>
</body>
</html>