neocities/public/js/app.js
2014-08-29 20:05:19 -07: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');
})
});