mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
19 lines
618 B
JavaScript
Executable file
19 lines
618 B
JavaScript
Executable file
//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();
|
|
});
|
|
});
|