neocities/public/assets/scripts/app.js
Scott O'Hara 08d1d6e68e Various CSS/layout fixes/updates
clean up of various html files

clean up of sass / css files

fix width/height issues with responsive website gallery

update responsive layout issues with website gallery

update max-sizing of input-Area class to 90%

updated broken positioning of footer icons
2013-07-23 22:42:05 -04:00

19 lines
443 B
JavaScript

$(document).ready(function() {
// do scrolly things on scroll
$(window).bind('scroll', function(){
if($(this).scrollTop() > 100) {
$(".hp-Logo").addClass('in-View');
$(".constant-Nav").addClass('in-View');
}
if($(this).scrollTop() < 100) {
$(".hp-Logo").removeClass('in-View');
$(".constant-Nav").removeClass('in-View');
}
});
$('.small-Nav').click(function(){
$('.header-Nav').toggleClass('show-Nav');
})
});