|
|
Line 5: |
Line 5: |
| | | |
| the-content{ | | the-content{ |
− | position: fixed;
| |
| top: 100px; | | top: 100px; |
| } | | } |
Revision as of 19:06, 16 October 2016
iGEM NYUAD Wiki
$(document).ready(function(){
$(window).scroll(function() {
if ($(document).scrollTop() > 50) {
// alert('you');
$('nav').addClass('shrink');
$('#nyuad-logo').css("height","44px");
} else {
$('nav').removeClass('shrink');
$('#nyuad-logo').css("height","66px");
}
});
});
Integrated Human Practices