Sarah igem (Talk | contribs) |
Sarah igem (Talk | contribs) |
||
Line 5: | Line 5: | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
}); | }); | ||
Revision as of 09:37, 15 October 2018
$(document).ready(function() { $('.discover').click(function() { $('#intro').toogleClass('hidden'); $('#maindesc').toogleClass('visible'); });
});
$(window).scroll(function() {
var hT = $('#scroll-to').offset().top,
hH = $('#scroll-to').outerHeight(), wH = $(window).height(), wS = $(this).scrollTop();
if (wS > (hT+hH-wH) && (hT > wS) && (wS+wH > hT+hH)){
$('h1').addClass('view')
} else {
$('h1').removeClass('view')
}
});