-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgallery.html
149 lines (105 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="main.css" type="text/css">
<style type="text/css">
<!--
.photo-show {
height: 300px;
max-width: 100%;
position: relative;
width: 300px;
margin: 0 auto;
}
.photo-show img {
animation: show 10s infinite;
border-radius: 50%;
height: auto;
max-width: 100%;
opacity: 0;
position: absolute;
}
@keyframes show {
0% {opacity:0}
10% {opacity:1}
40% {opacity:1}
50% {opacity:0}
}
.photo-show img {
transition: 0.2s;
}
.photo-show:hover img {
animation-play-state: paused;
border-radius: 0;
}
.photo-show img:nth-of-type(1) {
animation-delay: 0s;
}
.photo-show img:nth-of-type(2) {
animation-delay: 5s;
}
#slideshow{
position: relative;
width: 576px;
height: 432px;
overflow:hidden;
padding:0!important;
}
.slideshowimg{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding:0!important;
}
#slideshowimg1{
animation: fadeinout 12s ease 0s infinite;
opacity:0;
}
#slideshowimg2{
animation: fadeinout 12s ease 6s infinite;
opacity:0;
}
@keyframes fadeinout {
0% {opacity:0;left: 30%;}
5% {opacity:1;left: 0%;}
45% {opacity:1;left: 0%;}
50% {opacity:0;left: 30%;}
}
//-->
</style>
<script type="text/javascript">
window.onload = function () {
var elm = window.parent.document.getElementById("mainframe");
elm.style.height = document.body.scrollHeight + 100+ "px";
};
</script>
</head>
<body>
<h1 align="center">Digital Fireflies</h1>
<h2 align="center">(Undergraduate Project)</h2>
<p> We made "Digital Fireflies" using Raspberry PIs, LEDs, and photosensors. The period of flashing is governed by nonlinear oscillators (here we used the FitzHugh–Nagumo model and Hodgkin–Huxley model). The code is written in Python.</p>
<video width="100%" controls autoplay>
<source src="firefly.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h1 align="center" style="margin-top: 30px;">Weekly Lab Meeting</h1>
<div align="center">
<img src="img/labmeeting1.jpg" width="100%" >
</div>
<h1 align="center" style="margin-top: 30px;">Lab Trip to the A.I. conference in San Francisco</h1>
<div id="slideshow">
<div id="slideshowimg1" class="slideshowimg"><img src="img/aitrip2.jpg" width=576></div>
<div id="slideshowimg2" class="slideshowimg"><img src="img/aitrip1.jpg" width=576></div>
</div>
<h1 align="center" style="margin-top: 30px;">High Performance Computing Cluster</h1>
<p> Our HPC cluster has 1 head node + 24 compute nodes.</p>
<div align="left" class="photo-show">
<img src="img/facility1.jpg" width=300 >
<img src="img/facility2.jpg" width=300>
</div>
</body>
</html>