-
Notifications
You must be signed in to change notification settings - Fork 1
/
index2.html
147 lines (129 loc) · 4.85 KB
/
index2.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to Tinder!</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class=".container-fluid">
<nav class="navbar navbar-default navbar-fixed-top text-center" role="navigation">
<h3>Tinder</h3>
</nav>
<div id="scenes">
</div>
<nav class="navbar navbar-default navbar-fixed-bottom text-center" role="navigation">
<div id="submitbutton">
<input type="file" capture="camera" accept="image/*" id="cameraInput" name="cameraInput" title="Submit">
</div>
</nav>
<!-- container close div -->
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://gregpike.net/demos/bootstrap-file-input/bootstrap.file-input.js.pagespeed.jm.IdmWcpRIii.js"></script>
<script src="Database.js"></script>
<script>$(document).ready(function(){$('input[type=file]').bootstrapFileInput();});</script>
<script>
var queryString = window.location.search;
var filterVal = new Array();
if(queryString != "") {
for(var i = 0; i < queryString.length; i++) {
if(queryString.charAt(i) == '=') {
if(queryString.charAt(i+1) == 1) {
filterVal.push(1);
}
else{
filterVal.push(0);
}
if(queryString.charAt(i+1) == 2) {
filterVal.push(1);
}
else{
filterVal.push(0);
}
if(queryString.charAt(i+1) == 3) {
filterVal.push(1);
}
else{
filterVal.push(0);
}
}
}
}
else{
filterVal = null;
}
for(var i = 0; i < dataSet.length; i++) {
if(filterVal == null) {
generateDoc(i);
}
else if(dataSet[i].walk == filterVal.pop() || dataSet[i].drive == filterVal.pop() || dataSet[i].bike == filterVal.pop()) {
generateDoc(i);
}
} // end for
function generateDoc(i) {
d3.select("#scenes")
.append("div")
.attr("class", "row")
.append("div")
.attr("class", "col-xs-12 col-sm-6")
.append("div")
.attr("class", "thumbnail")
.attr("id", "pic" + i)
.append("img")
.attr("src", dataSet[i].image)
.attr("height", "100px")
.attr("width", "100%");
d3.select("#pic" + i)
.append("div")
.attr("class", "caption")
.attr("id", "sec" + i);
d3.select("#sec" + i)
.append("h3")
.text(dataSet[i].title);
d3.select("#sec" + i)
.append("p")
.text(dataSet[i].notes);
d3.select("#sec" + i)
.append("form")
.attr("method","GET")
.attr("action", "photo.html")
.attr("id","form" + i)
.append("input")
.attr("type","hidden")
.attr("name","photoid")
.attr("value", i);
d3.select("#form" + i)
.append("a")
.attr("href", "photo.html")
.append("button")
.attr("type","submit")
.attr("class","btn btn-primary")
.text("View more information");
}
</script>
<!-- splash page -->
<script>
$(function() {
setTimeout(hideSplash, 2000);
});
function hideSplash() {
$.mobile.changePage("#home", "fade");
}
</script>
</body>
</html>