-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallery.html
433 lines (345 loc) · 16.5 KB
/
Gallery.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<!DOCTYPE html>
<html>
<head>
<title>Futia Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/gallery.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZRH93MNSHV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZRH93MNSHV');
</script>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
}
/* The grid: Four equal columns that floats next to each other */
.column {
float: left;
width: 25%;
padding: 1%;
bottom: 1%;
}
/* Style the images inside the grid */
.column img {
opacity: 0.8;
cursor: pointer;
}
.column img:hover {
opacity: 1;
}
/* Style the videos inside the grid*/
.column video {
opacity: 0.8;
cursor: pointer;
}
.column video:hover{
opacity: 1;
}
.hide {
display: none;
}
.column video:hover + .hide{
display:block;
color: black;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* The expanding image container */
.container {
top: 0;
position: fixed;
display: none;
width: 100%;
text-align: center;
background: #0009;
height: 100%;
padding-top: 10vh;
}
/* Sub-container for full images*/
.subcontainer {
position: relative;
display: none;
max-width: 85vw;
}
/* Expanding image text */
#imgtext {
position: absolute;
bottom: 0;
width: 100%;
background-color: #eceef4;
color: black;
font-size: 100%;
padding-left: 2.5%;
padding-right: 2.5%;
}
/* Closable button inside the expanded image */
.closebtn {
position: absolute;
top: 10px;
right: 15px;
color: gray;
width: 30px;
height: 30px;
background-color: rgba(0,0,0,0.5);
line-height: 1;
font-size: 32px;
cursor: pointer;
text-align: center;
padding-left: 3px;
}
.closebtn:hover,
.closebtn:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
.doc{
background-color: transparent;
width: 100%;
bottom: 10px;
</style>
</head>
<body>
<!-- Header-->
<header id="header">
<nav class="links">
<ul>
<li><h4><a href="https://mfutia.github.io/">Home</a></h4></li>
<li><h4><a href="About.html">About</a></h4></li>
<li><h4><a href="CV.html">CV</a></h4></li>
<li><h4><a href="Research.html">Research</a></h4></li>
<li><h4><a href="Pubs.html">Publications</a></h4></li>
<li><h3><a href="Gallery.html">Gallery</a></h3></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main">
<div style="text-align:center">
<h1>Research Photos</h1>
</div>
<div>
<h2>This gallery contains pictures and videos of Matt Futia's ongoing and prior research. Feel free to contact me at <a href="mailto:[email protected]" style="color:#4068bd">[email protected]</a> if you'd like to learn more about anything you see!</h2>
</div>
<hr>
<div>
<h3>Current research at UVM</h3>
</div>
<!-- The four columns of pictures -->
<div class="row">
<div class="column">
<img src="Gallery/thumbs/hatchery_setup_thumb.jpg" alt="Hatchery setup for lake trout rearing" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/hatchery_setup.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/marcelle_netting_thumb.jpg" alt="Hauling gillnets on the RV Marcelle Melosira" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/marcelle_netting.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/verticalnets_bluemesa_thumb.jpg" alt="Vertical gillnets set on Blue Mesa Reservoir, CO" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/verticalnets_bluemesa.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/winter_diving_thumb.jpeg" alt="Winter diving in Lake Champlain" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/winter_diving.jpeg">
</div>
<div class="column">
<img src="Gallery/thumbs/seeding_canister_thumb.jpeg" alt="Seeding Atlantic salmon eggs in field incubator" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/seeding_canister.jpeg">
</div>
<div class="column">
<img src="Gallery/thumbs/astroturf_sandwich_thumb.jpg" alt="Astroturf sandwich for overwinter egg incubation" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/astroturf_sandwich.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/field_processing_thumb.jpg" alt="Field processing egg bag incubators" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/field_processing.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/trout_fry_thumb.jpg" alt="Lake trout fry reared in field incubators" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/trout_fry.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/fishsurgery_thumb.jpg" alt="Surgical transmitter implant" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/fishsurgery.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/sturgeon_thumb.jpg" alt="Lake strugeon collected for acoustic tracking" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/sturgeon.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/trawl_catch_thumb.jpg" alt="Sorting catch from a bottom trawl" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/trawl_catch.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/sunrise_thumb.jpg" alt="Fiery sunrise over Lake Champlain" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/sunrise.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/lampreywound_thumb.jpg" alt="Lake trout with sea lamprey and fresh lamprey wound" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/lampreywound1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/juv_laketrout_thumb.jpg" alt="Juvenile lake trout captured with bottom trawling" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/juv_laketrout.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/cassieLT_thumb.jpg" alt="Adult lake trout captured by angling" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/cassieLT1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/diving_entry_thumb.jpg" alt="Rolling off the back of the R/V Melosira for scuba surveys" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/diving_entry.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/seeding_eggs_thumb.jpg" alt="Seeding fertilized lake trout eggs in egg bags" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/seeding_eggs.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/shelburnepond_thumb.jpg" alt="Reflective sunrise on Shelburne Pond" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/shelburnepond.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/winterwork_thumb.jpg" alt="Sunrise at the start of winter field day on Lake Champlain" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/winterwork.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/fallwork_thumb.jpg" alt="Fall fieldwork on Lake Champlain" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/fallwork.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/lt_diet_thumb.jpg" alt="Lake trout with a large rainbow smelt in its stomach" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/lt_diet.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/wintergillnet_thumb.jpg" alt="Pulling in a gillnet through the ice" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/wintergillnet1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/matt_lt_thumb.jpg" alt="Lake trout captured during fall" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/matt_lt.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/rov_laketrout_thumb.jpg" alt="Spawning aggregation of lake trout" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/rov_laketrout1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/ice_fishing_thumb.jpg" alt="Winter sampling on Lake Champlain" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/ice_fishing.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/channel_cat_thumb.jpg" alt="Channel catfish collected while assisting state biologists" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/channel_cat.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/rec_mussel_thumb.jpg" alt="Acoustic receiver and bouy covered in zebra mussels" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/rec_mussel.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/eggbag_thumb.jpg" alt="Burying a mesh egg bag in a lake trout spawning reef" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/eggbag.jpg">
</div>
<div class="column">
<video width="100%" controls>
<source src="Gallery/fish_surgery1.mp4" type="video/mp4">
</video>
<div class="hide"><p>Surgical implantation of acoustic transmitter-Part 1</p></div>
</div>
<div class="column">
<video width="100%" controls>
<source src="Gallery/fish_surgery2.mp4" type="video/mp4">
</video>
<div class="hide"><p>Surgical implantation of acoustic transmitter-Part 2</p></div>
</div>
<div class="column">
<video width="100%" controls>
<source src="Gallery/fish_surgery3.mp4" type="video/mp4">
</video>
<div class="hide"><p>Surgical implantation of acoustic transmitter-Part 3</p></div>
</div>
<div class="column">
<video width="100%" controls>
<source src="Gallery/lkt_release.mp4" type="video/mp4">
</video>
<div class="hide"><p>Lake trout released after tagging</p></div>
</div>
</div>
<hr />
<div>
<h3>Previous research at SUNY Brockport</h3>
</div>
<div class="row">
<div class="column">
<img src="Gallery/thumbs/stripping_eggs_ms_thumb.jpg" alt="Stripping eggs from a Chinook salmon for biochemical analyses" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/stripping_eggs_ms.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/backpack_shocking_ms_thumb.jpg" alt="Backpack electroshocking for salmon and trout in a tributary of Lake Ontario" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/backpack_shocking_ms.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/chinook_ms_thumb.jpg" alt="Chinook salmon collected for biochemical analyses" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/chinook_ms1.jpg">
</div>
<div class="column">
<video width="100%" controls muted>
<source src="Gallery/deficient_steelhead.mp4" type="video/mp4">
</video>
<div class="hide"><p>Steelhead trout offspring with a natural thiamin deficiency. Video credit: Sage Hallenbeck</p></div>
</div>
<div class="column">
<img src="Gallery/thumbs/northernpike_thumb.jpg" alt="Northern pike captured in a trap net" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/northernpike1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/eyed_eggs_ms_thumb.jpg" alt="Eyed lake trout eggs" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/eyed_eggs_ms.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/roundgoby_thumb.jpg" alt="Invasive round goby for feeding experiment" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/roundgoby1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/salmon_ms_thumb.jpg" alt="Atlantic salmon collected with gillnets" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/salmon_ms.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/chinook_salmon_thumb.jpg" alt="Size comparison of two spawning male Chinook salmon" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/chinook_salmon.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/ontario_lt_thumb.jpg" alt="Lake trout collected while assisting USGS biologists" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/ontario_lt1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/rv_kaho_thumb.jpg" alt="Field work with the USGS and their R/V Kaho" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/rv_kaho.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/lamprey_thumb.jpg" alt="Headshot of a sea lamprey" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/lamprey1.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/electrofishing2_thumb.jpg" alt="Sunset on Lake Ontario while electrofishing" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/electrofishing2.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/turtles_thumb.jpg" alt="Snapping and painted turtles from a trap net" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/turtles.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/american_eel_thumb.jpg" alt="American eel captured while night electrofishing" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/american_eel.jpg">
</div>
<div class="column">
<img src="Gallery/thumbs/rainbow_darter_thumb.jpg" alt="Male rainbow darter with breeding coloration" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/rainbow_darter.jpg">
</div>
</div>
<!--
<div class="column">
<img src="Gallery/thumbs/XXX_thumb.jpg" alt="XXX" style="width:100%" onclick="myFunction(this);" data-fullsize="Gallery/XXX.jpg">
</div>
-->
</section>
<div class="container" onclick="this.style.display='none'">
<div class="subcontainer">
<span onclick="this.parentElement.parentElement.style.display='none'" class="closebtn">×</span>
<img id="expandedImg" style="width:100%; max-height:80vh;">
<div id="imgtext"></div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<nav class="copyright">
<ul>
<li><h6 class="thick">© Matthew H. Futia</h6></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script>
function myFunction(imgs) {
var expandImg = document.getElementById("expandedImg");
var imgText = document.getElementById("imgtext");
if (imgs.getAttribute("data-fullsize")) {
expandImg.src = imgs.getAttribute("data-fullsize");
} else {
expandImg.src = imgs.src;
}
imgText.innerHTML = imgs.alt;
expandImg.parentElement.parentElement.style.display = "block";
expandImg.parentElement.style.display = "inline-block";
}
</script>
</body>
</html>