-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·426 lines (356 loc) · 18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Arcaro Lab</title>
<!-- Favicon -->
<link rel="icon" href="img/core-img/favicon.ico">
<!-- Core Stylesheet -->
<link href="style.css" rel="stylesheet">
<!-- Responsive CSS -->
<link href="css/responsive/responsive.css" rel="stylesheet">
<style>
@media (min-width: 992px) {
body {
padding-top: 20px;
padding-left: 120px;
padding-right: 120px;
font-size: 32px;
margin: 0px;
}
.right-side-column {
display: flex;
flex-direction: column;
}
}
@media (max-width: 991px) {
body {
padding-top: 5px;
padding-left: 20px;
padding-right: 20px;
font-size: 20px;
margin: 0px;
}
.right-side-column {
display: none;
}
.content-container {
flex-direction: column;
}
.main-content-area {
max-width: 100%;
margin-right: 0;
/* Remove right margin to take full width */
}
.vertical-line {
display: none;
}
}
hr {
height: 2pt;
background-color: grey;
border: none;
width: 100%;
margin: 0 auto;
}
.content-container {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.main-content-area {
flex: 1;
/* Adjust this to change the main content width */
max-width: 100%;
/* Adjust this to control the width of the main content area */
}
.right-side-column h2 {
font-size: 40px;
/* Larger font size for the header */
margin-bottom: 30px;
}
.right-side-column section p {
font-size: 20px;
/* Larger font size for the paragraph text */
}
/* Adjust height to match the main content area */
.right-side-column>div {
flex: 1;
}
.navbar.navbar-expand-lg .navbar-nav .nav-link {
padding: 10px 50px;
margin-left: -5%;
margin-right: -5%;
margin-bottom: 0%;
color: #373f6d;
text-transform: uppercase;
font-size: 44px;
}
.transmission-lines {
margin-top: 10px;
text-align: center;
}
.transmission-lines .line {
height: 2px;
background-color: black;
margin: 5px auto; /* Centers the lines */
}
</style>
</head>
<body>
<img src="img/core-img/arcarolab_single.gif" width="30%" height="30%">
<!-- Preloader Start -->
<div id="preloader">
<img src="img/core-img/background0.png" alt="Loading..." class="loading-image" id="image1">
<img src="img/core-img/background1.png" alt="Loading..." class="loading-image" id="image2">
</div>
<!-- ****** Header Area Start ****** -->
<header class="header_area">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#yummyfood-nav" aria-controls="yummyfood-nav" aria-expanded="false" aria-label="Toggle navigation"><i class="fa fa-bars" aria-hidden="true"></i> Menu</button>
<!-- Menu Area Start -->
<div class="collapse navbar-collapse justify-content-center" id="yummyfood-nav">
<ul class="navbar-nav" id="yummy-nav">
<li class="nav-item">
<a class="nav-link" href="research.html">Research</a>
</li>
<li class="nav-item">
<a class="nav-link" href="people.html">People</a>
</li>
<li class="nav-item">
<a class="nav-link" href="publications.html">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/arcaro-lab">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<!-- ****** Header Area End ****** -->
<!-- Red bar -->
<div class="widget-title">
<h6></h6>
</div>
<div class="desktop-only"
<!-- ****** Welcome Post Area Start ****** -->
<section class="welcome-post-sliders owl-carousel">
<!-- Single Slide -->
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/visexpansion.png" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="https://www.pnas.org/doi/10.1073/pnas.2421585122">
<h5>Expansion of a conserved architecture drives the evolution of primate visual cortex. <br><br>PNAS</h5>
</a>
</div>
</div>
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/neonatepulvinar.jpg" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="https://www.cell.com/current-biology/abstract/S0960-9822(24)01583-5">
<h5>An intrinsic hierarchical, retinotopic organization of visual pulvinar connectivity in the human neonate. <br><br>Current Biology</h5>
</a>
</div>
</div>
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/histology.jpg" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="pdf/Oishi_CellReports.pdf">
<h5>Inferotemporal face patches are histo-architectonically distinct. <br><br>Cell Reports</h5>
</a>
</div>
</div>
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/topographic.png" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="pdf/Oishi_CellReports.pdf">
<h5>A whole-brain topographic ontology. <br><br>Annual Reviews Neuroscience</h5>
</a>
</div>
</div>
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/NRP.jpg" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="pdf/elife-26196-v1.pdf">
<h5>A domain-relevant framework for the development of face processing. <br><br>Nature Reviews Psychology</h5>
</a>
</div>
</div>
<!-- Single Slide -->
<div class="welcome-single-slide">
<!-- Post Thumb -->
<img src="img/research-img/stuart_solo.png" alt="">
<!-- Overlay Text -->
<div class="project_title">
<a href="pdf/Arcaro2020_eLife.pdf">
<h5>The neurons that mistook a hat for a face. <br><br>eLife</h5>
</a>
</div>
</div>
</section>
</div>
<!-- ****** Welcome Area End ****** -->
<!-- Red bar -->
<div class="widget-title">
<h6></h6>
</div>
<!-- Main content and scrolling text container wrapped in a flex container -->
<div class="content-container" style="display: flex;">
<!-- Main content area -->
<div class="main-content-area" style="flex: 1;">
<p style="font-size:28px; text-align:center;"><b>How does our environment guide neural development, and how does the emerging neural architecture support perception and behavior? </b></p>
<p style="font-size:22px; text-align:center;">Our research combines neuroimaging, behavior, and electrophysiology to understand how intrinsic and experience-driven processes interact throughout development to shape brain organization and behavior. Our current focus is on neural development supporting visual object recognition across mammalian species.</p>
<hr style="height:15pt; visibility:hidden;" />
<hr/>
<hr style="height:15pt; visibility:hidden;" />
<p style="font-size:22px; text-align:center;"> The lab is part of the Thalamus Conte Center aimed at advancing our understanding on the role of higher order thalamus on cognition. </p>
<p style="font-size:22px; text-align:center;"> <A HREF="https://conte.thalamus.princeton.edu/"> Check out the project and the fantastic group of investigators involved!</A></p>
<hr style="height:15pt; visibility:hidden;" />
<hr/>
<hr style="height:15pt; visibility:hidden;" />
<p style="font-size:22px; text-align:center;"> We're looking to hire a postdoc to work on projects tracking behavioral and neural (structural + functional) changes across development in tree shrews, macaques, and humans. E-mail <A HREF="mailto: [email protected]"> Mike</A> if interested.</p>
</div>
<!-- Vertical line to separate the right column -->
<div style="width: 2px; background-color: black; margin-left: 20px; margin-right: 20px;"></div>
<!-- Right-side column for Lab News with auto-scroll -->
<div class="right-side-column" style="width: 25%; height: 600px; padding-left: 20px;">
<h2 style="">Lab News</h2>
<!-- Auto-scrolling container for Lab News sections -->
<div id="auto-scroll-container" style="height: 100%; overflow: hidden; position: relative;">
<div id="scroll-content">
<!-- Scrollable content, duplicated for a seamless loop -->
<section style="margin-bottom: 25px;">
<p>Please stand by ...</p>
</section>
<section style="margin-bottom: 25px;">
<p>Jan 2025. Big congrats to Emily on her paper assessing the evolution of primate visual cortex. <A HREF="https://www.pnas.org/doi/10.1073/pnas.2421585122"> Out now in PNAS!</A></p>
</section>
<section style="margin-bottom: 25px;">
<p>Dec 2024. Big congrats to Vlad on his paper mapping the human neonate pulvinar. <A HREF="https://www.cell.com/current-biology/abstract/S0960-9822(24)01583-5"> Out now in Current Biology!</A></p>
</section>
<section style="margin-bottom: 25px;">
<p>Sept 2024. Big congrats to Hiroki on his macaque face patch histology paper. <A HREF="https://www.cell.com/cell-reports/fulltext/S2211-1247(24)01083-0"> Out now in Cell Reports!</A></p>
</section>
<section style="margin-bottom: 25px;">
<p>Jan 2024. Perspective piece on the universality of topographic brain maps. <A HREF="https://www.annualreviews.org/doi/abs/10.1146/annurev-neuro-082823-073701?journalCode=neuro"> Out now in Annual Reviews Neuroscience!</A></p>
</section>
<section style="margin-bottom: 25px;">
<p>Jan 2024. The lab has received a <A HREF="http://whitehall.org/about/">Whitehall Foundation</A> grant to study neuroanatomical constraints on the development of visual domains. </p>
</section>
<section style="margin-bottom: 25px;">
<p>Oct 2023. The lab welcomes our new postdoc, Xingyu Liu!</p>
</section>
<!-- Repeat the content for the loop -->
<section style="margin-bottom: 25px;">
<p>Oct 2023. The lab welcomes our new postdoc, Vlad Ayzenberg!</p>
</section>
<section style="margin-bottom: 25px;">
<p>April 2023. The lab is thrilled to be part of the <A HREF="https://conte.thalamus.princeton.edu/">Thalamus Conte Center</A> where we will study thalamocortical cognitive networks in the healthy human brain. </p>
</section>
<section style="margin-bottom: 25px;">
<p>Feb 2023. <A HREF="https://www.nature.com/articles/s44159-023-00152-5">New paper in Nature Reviews Psychology!</A></p>
</section>
<section style="margin-bottom: 25px;">
<p>END OF TRANSMISSION</p>
<div class="transmission-lines">
<div class="line" style="width: 100%;"></div>
<div class="line" style="width: 75%;"></div>
<div class="line" style="width: 56.25%;"></div>
<div class="line" style="width: 42.19%;"></div>
<div class="line" style="width: 31.64%;"></div>
</div>
</section>
<section style="margin-bottom: 100px;">
</section>
</div>
</div>
</div>
</div>
<!-- ****** Footer Menu Area Start ****** -->
<footer class="footer_area">
<div class="container">
<div class="row">
<div class="col-12">
<div class="footer-content">
<!-- Logo Area Start -->
<div class="footer-logo-area text-center">
<img src="img/core-img/pennlogo.jpg" alt="PennLogo" style="width:10%;height:10%;">
</div>
<p class="font_8" style="font-size:12px; text-align:center;"><span style="text-decoration:underline;"><a href="https://www.upenn.edu/" target="_blank" data-content="https://www.upenn.edu/" data-type="external" rel="undefined"><span style="font-size:16px;">University of Pennsylvania</span></a></span></p>
<p class="font_8" style="font-size:12px; text-align:center; line-height:1.1em;"><span style="text-decoration:underline;"><a href="https://psychology.sas.upenn.edu/" target="_blank" data-content="https://psychology.sas.upenn.edu/" data-type="external" rel="undefined"><span style="font-size:16px;">Department of Psychology</span></a></span></p>
</div>
</div>
</div>
</div>
</footer>
<!-- Script for auto-scrolling -->
<script>
const scrollContainer = document.getElementById('auto-scroll-container');
const scrollContent = document.getElementById('scroll-content').innerHTML; // Grab the original content
scrollContainer.innerHTML += scrollContainer.innerHTML; // Duplicate the content for scrolling
let startPos = 0;
const speed = .25; // Adjust the speed as needed
function autoScroll() {
if (startPos >= scrollContainer.scrollHeight / 2) {
startPos = 0; // Reset to top when halfway through the content
}
startPos += speed;
scrollContainer.scrollTop = startPos;
window.requestAnimationFrame(autoScroll);
}
autoScroll(); // Initialize auto-scrolling
</script>
<!-- Script Tags Including jQuery, Popper, Bootstrap, and Other Plugins -->
<script src="js/jquery/jquery-2.2.4.min.js"></script>
<script src="js/bootstrap/popper.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/others/plugins.js"></script>
<script src="js/active.js"></script>
<script>
window.onload = function() {
var redBarWidth = document.querySelector('.widget-title h6').offsetWidth;
var navLinks = document.querySelectorAll('.navbar-nav .nav-link');
var fontScaling = 42; // Adjust this value as needed
// Calculate font size based on red bar width and font scaling factor
var fontSize = redBarWidth / fontScaling;
// Apply the calculated font size to each nav link
navLinks.forEach(function(link) {
link.style.fontSize = fontSize + 'px';
});
// Re-adjust font size on window resize
window.addEventListener('resize', function() {
redBarWidth = document.querySelector('.widget-title h6').offsetWidth;
fontSize = redBarWidth / fontScaling;
navLinks.forEach(function(link) {
link.style.fontSize = fontSize + 'px';
});
});
};
</script>
</body>
</html>