Initial commit

This commit is contained in:
Perry Woodin 2016-06-14 15:07:17 -04:00
commit cbbac7e2d9
115 changed files with 7110 additions and 0 deletions

19
assets/js/scrolling-nav.js Executable file
View file

@ -0,0 +1,19 @@
//jQuery to collapse the navbar on scroll
$(window).scroll(function() {
if ($(".navbar").offset().top > 100) {
$(".navbar-fixed-top").addClass("top-nav-collapse");
} else {
$(".navbar-fixed-top").removeClass("top-nav-collapse");
}
});
//jQuery for page scrolling feature - requires jQuery Easing plugin
$(function() {
$('a.page-scroll').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 500, 'easeInOutExpo');
event.preventDefault();
});
});