-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
248 lines (224 loc) · 7.64 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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gumus Lab</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #000000;
}
.header {
background-color: #000000;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-links {
display: flex;
align-items: center;
}
.nav-links a {
/* color: #ccc; */
color: grey;
margin-left: 20px;
text-decoration: None;
font-weight: bold;
text-align: right;
font-size: 13px;
}
.nav-links .selected {
color: white;
}
.header p {
color: #ccc;
margin: 0px;
padding:0px;
text-decoration: None;
font-weight: bold;
text-align: left;
}
.header .name {
color: white;
padding: 5px;
font-size: 25px;
font-weight: bold;
}
.header .lab {
font-weight: 200;
}
.nav-links a:hover {
color: white;
}
.container {
padding: 20px;
}
/* Add rotating animation */
/* 1st image = https://media.giphy.com/media/7VzgMsB6FLCilwS30v/giphy.gif */
/* 2nd image = https://media.giphy.com/media/NsBknNwmmWE8WU1q2U/giphy.gif */
/* 3rd image = https://media.giphy.com/media/7NS9RAepPQ0HJ85qJz/giphy.gif */
.background-image {
background-image: url('https://media.giphy.com/media/7NS9RAepPQ0HJ85qJz/giphy.gif');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: #000000;
width: 100vw;
height: 100vh;
}
.background-image .catchline {
position: absolute;
top: 50%; /* Position the text vertically in the middle */
left: 50%; /* Position the text horizontally in the center */
transform: translate(-50%, -50%); /* Center the text precisely */
color: white;
font-weight: bold;
font-size: 50px;
text-align: center;
width: 50%; /* Set the width of the text */
opacity: 0.1; /* Start with 0 opacity */
transition: opacity 4s ease-in-out; /* Apply transition to opacity property */
}
.background-image .catchline.active {
opacity: 1; /* When the class "active" is added, transition to full opacity */
/* transition: opacity 4s ease-in-out; */
/* color: white; */
}
.content .missionStatement {
background-color: white;
color:black;
display: flex;
flex-direction: row;
/* align-items: center; */
gap: 40px;
}
.content .missionStatement h1 {
width:100%;
text-align: right;
margin-left: 40px;
margin-top: 40px;
margin-bottom: 40px;
font-size: 40px;
}
.content .missionStatement p {
text-align: justify;
margin-bottom: 40px;
line-height: 1.5;
font-size: 20px;
margin-top: 40px;
margin-right: 40px;
}
.content .wordCloud {
display: flex;
justify-content: center;
align-items: center;
}
.content .wordCloud .wordCloudImg {
padding: 0px;
}
.copyright {
color:#ccc;
height: 80px;
display: flex;
align-items: center;
border-top: 1px solid grey;
}
.copyright span {
padding-left: 45%;
}
.footer-class {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
margin-top: 50px;
/* border: 1px solid yellow; */
}
.footer-class iframe {
width:60%;
height:100%;
}
.background-image .drop-down {
position: relative;
top: 88%;
left: 50%;
}
.background-image .drop-down .drop-down-img {
border-radius: 50%;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div class="header">
<p><span class="name">GÜMÜŞ</span><span class="lab">LAB</span></p>
<div class="nav-links">
<a href="index.html" class="selected">HOME</a>
<a href="./src/ourteam.html">TEAM</a>
<a href="./src/software.html">SOFTWARE</a>
<a href="./src/publications.html">PUBLICATIONS</a>
<a href="./src/mission.html" >MISSION STATEMENT</a>
</div>
</div>
<div class="content">
<div class="background-image">
<div class="catchline">
<!-- UNLOCKING GENETIC MYSTERIES THROUGH VISUAL NETWORKS -->
<!-- UNLOCKING GENETIC MYSTERIES THROUGH COMPUTATIONAL GENOMICS AND INTERACTIVE VISUALIZATIONS -->
RESEARCH IN COMPUTATIONAL CANCER GENOMICS
</div>
<div class="drop-down">
<img class="drop-down-img" src="./static/down.png" id="drop-down-button">
</div>
</div>
<div class="missionStatement">
<h1> Research Summary</h1>
<p>
We are a computational genomics lab where we develop and apply methods and
tools to identify genetic drivers of cancer risk, progression and therapy
response. To understand such genetic factors, we need to find new routes
to analyze, integrate and explore diverse, massive and heterogeneous
genomics datasets. Towards this goal, we utilize genomic epidemiology,
computational genomics, data visualization, machine learning, and
ultrafast computing. We have been active in the area of computational
cancer genomics, specifically in the analysis of massive sequencing data
in genomic epidemiology studies in the past few years. Our appointments at
the Department of Genetics and Genomic Sciences, the NCI-designed Tisch
Cancer Center and the Precision Immunology Institute at the Icahn School
of Medicine foster an ideal environment to pursue our research studies.
</p>
</div>
<div class="wordCloud">
<img class="wordCloudImg" src="./static/wordcloud.png" id="wordCloudImg">
</div>
</div>
<div class="footer-class">
<iframe src="./src/footer.html" frameborder="0" scrolling="no"></iframe>
</div>
<div class="copyright">
<span>© Zeynep H Gümüş Lab 2023</span>
</div>
<script>
window.addEventListener("DOMContentLoaded", function() {
const catchline = document.querySelector(".catchline");
catchline.classList.add("active");
});
document.addEventListener("DOMContentLoaded", function () {
const dropDownButton = document.getElementById("drop-down-button");
dropDownButton.addEventListener("click", function () {
// Calculate the target position for scrolling
const targetPosition = window.innerHeight;
// Smooth scroll behavior
window.scrollTo({
top: targetPosition,
behavior: "smooth",
});
});
});
</script>
</body>
</html>