-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
234 lines (202 loc) · 9.38 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery/1.11.0/jquery.min.js" ></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$(document).on("mouseover", ".linkDiv", function(){
$("img", this).css("border", "3px solid green");
});
$(document).on("mouseout", ".linkDiv", function(){
$("img", this).css("border", "none");
});
$(document).on("click", ".linkDiv", function(){
console.log($("a", this).attr("href"));
window.location.href= $("a", this).attr("href");
});
$(".linkDiv a").hide();
});
</script>
<title>The MediaLab at the Metropolitan Museum of Art - Beta</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[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]-->
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
</head>
<!-- NAVBAR
================================================== -->
<body>
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">The MediaLab at the Metropolitan Museum of Art - Beta</a>
</div>
<!--
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="dropdown-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
</div>
-->
</div>
</div>
</div>
</div>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="images/AmericanMask.jpg" alt="Our Mission">
<div class="container">
<div class="carousel-caption">
<h1>Our Mission</h1>
<p><i>'To explore the impact that technology can have on the museum experience, in person and online'</i> </p>
</div>
</div>
</div>
<div class="item">
<img src="images/medialabConversation.jpg" width="960" alt="Unicorn">
<div class="container">
<div class="carousel-caption">
<h1>uni·corn </h1>
<p>noun \ˈyü-nə-ˌkȯrn\ <BR> <i>Creative Technologsts, Coders, Hackers, Designers, Developers, Information Architects, Physical Computing-ers, and museum technology enthusiasts playing, learning, and sharing at the intersections of culture and technology. <b>You!</b></i></p>
</div>
</div>
</div>
<div class="item">
<img src="images/ericKjellgren.jpg" alt="Conversation">
<div class="container">
<div class="carousel-caption">
<h1>Creative Technology in Conversation with Museum Expertise</h1>
<p></p>
</div>
</div>
</div>
<div class="item">
<img src="images/ledaMarsyas.jpg" alt="Creative Reuse">
<div class="container">
<div class="carousel-caption">
<h1>Museum Content for Creative Reuse</h1>
<p></p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#myCarousel" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>
</div><!-- /.carousel -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<center><h1>MediaLab Online Projects</h2></center>
<div class="container links">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/scrapi.jpg" width="280" alt="SCRAPI">
<h2>SCRAPI</h2>
<p>Machine Access to Website Data</p>
<p><a class="btn btn-default" href="http://scrapi.org" role="button">Check it!</a></p>
</div>
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/smiles.jpg" width="280" alt="Smiles">
<h2>Smiles</h2>
<p>Inspired by Kathy Galitz's 'Smile' </p>
<p><a class="btn btn-default" href="http://github.com/metmuseum-medialab/objectcrowdsourcer" role="button">Check it!</a></p>
</div>
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/sameartistmemory.jpg" width="280" alt="Oval Screenshot of Same Artist Memory Game">
<h2>Same Artist Memory</h2>
<p>Simple Memory Game, but match the artist!</p>
<p><a class="btn btn-default" href="/sameartistmemory/" role="button">Play!</a></p>
</div>
</div>
<div class="row">
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/data_integrator.png" width="280" alt="Data Integrator" />
<h2>Data Integrator</h2>
<p>Widget-based tool for integrating object information and functionality</p>
<p><a class="btn btn-default" href="/integrator/index.html" role="button">Check it!</a></p>
</div>
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/hackgraph.jpg" width="280" alt="Hackgraph">
<h2>Hackgraph</h2>
<p>A Graph of Hackpad Links </p>
<p><a class="btn btn-default" href="/hackgraph/" role="button">Check it!</a></p>
</div>
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/pathfinder.jpg" width="280" alt="Pathfinder">
<h2>Pathfinder</h2>
<p>Beta Pathfinding app for the Met.</p>
<p><a class="btn btn-default" href="/pathfinder/" role="button">Check it!</a></p>
</div>
</div>
<div class="row">
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/cascader.png" width="280" alt="Image Cascade Processor" />
<h2>Computer Vision Service</h2>
<p>Give it an image and it will process it through various openCV cascade files.</p>
<p><a class="btn btn-default" href="/cascader/index.html" role="button">Check it!</a></p>
</div>
<div class="col-md-4 linkDiv">
<img class="img-circle" src="images/elasticsearch_head.png" width="280" alt="Image Cascade Processor" />
<h2>Elastic Search Frontend</h2>
<p>Head Plugin for ElasticSearch</p>
<p><a class="btn btn-default" href="/search_head/" role="button">Check it!</a></p>
</div>
</div>
<hr>
<footer>
<p>© Company 2014</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/docs.min.js"></script>
</body>
</html>