add website v1

This commit is contained in:
bchiang7
2016-12-10 23:39:15 -05:00
parent f43dfaf419
commit 3ed5fcff84
127 changed files with 31593 additions and 0 deletions

19
v1/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 > 50) {
$(".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
}, 1500, 'easeInOutExpo');
event.preventDefault();
});
});