-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
125 lines (118 loc) · 4.96 KB
/
demo.html
File metadata and controls
125 lines (118 loc) · 4.96 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<LINK REL=StyleSheet href="static/style.css" TYPE="text/css" MEDIA=screen>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$("#you").click(function() {
$("#places").animate({"height": "toggle", "opacity": "toggle"}, "slow");
});
});
</script>
</head>
<body>
<div id="fixed">
<div id="places" style="display:none;">
Bite <br/>
Newark Liberty International Airport (EWR) <br/>
Peels <br/>
East Village Thai <br/>
The Scratcher <br/>
Jo’s Coffee (1x), Pulino’s <br/>
foursquare HQ <br/>
Baoguette Cafe (4x) <br/>
Berry Park (1x) <br/>
The Smith (1x) <br/>
Russ & Daughters (1x) <br/>
La Colombe Torrefaction (1x) <br/>
Austin Bergstrom International Airport... <br/>
Bowery Beef (1x) <br/>
Paul’s “Da Burger Joint” (1x) <br/>
Nyonya (1x) <br/>
‘wichcraft (1x) <br/>
Macao Trading Co. (1x) <br/>
Abraço (2x) <br/>
Hecho en Dumbo (1x) <br/>
The Smile (2x) <br/>
Think Coffee (1x) <br/>
The Mud Truck (16x) <br/>
Pho 32 & Shabu (2x) <br/>
Hampton Chutney Co. (1x) <br/>
Chipotle Mexican Grill (5x) <br/>
Oaxaca (2x) <br/>
Hotel San Jose (1x) <br/>
Austin Bergstrom International Airport... <br/>
Bowery Beef (1x) <br/>
Paul’s “Da Burger Joint” (1x) <br/>
Nyonya (1x) <br/>
‘wichcraft (1x) <br/>
Macao Trading Co. (1x) <br/>
Abraço (2x) <br/>
Hecho en Dumbo (1x) <br/>
The Smile (2x) <br/>
Think Coffee (1x) <br/>
The Mud Truck (16x) <br/>
Pho 32 & Shabu (2x) <br/>
Hampton Chutney Co. (1x) <br/>
Chipotle Mexican Grill (5x) <br/>
Oaxaca (2x) <br/>
Hotel San Jose (1x) <br/>
Boka/Bon Chon (1x)
</div>
<div id="places2" style="display:none;">
hey there
</div>
</div>
<div id="people">
<div id="you">
<img src="tempImg/1.png" width="270" height="285" alt="1">
<div id="welcomeMessage">
<div class="name">Hi Ted</div>
<p>you've been to 400 places</p>
<p>Here are some soulmates:</p>
</div>
</div>
<div id="them">
<div class="candidate">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate" id="test">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate" id="test2">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
<div class="candidate">
<img src="tempImg/2.png" width="100" height="100" alt="2">
<div class="name">Honora D.</div>
<div class="overlapCount">74 place matches</div>
</div>
</div>
</div>
</body>
</html>