Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
This commit is contained in:
23
html/js/modules (optional)/scrolling-nav.js
Normal file
23
html/js/modules (optional)/scrolling-nav.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/* SCROLLING NAVBAR */
|
||||
//jQuery to collapse the navbar on scroll
|
||||
$(window).scroll(function () {
|
||||
if ($(".navbar").offset()) {
|
||||
if ($(".navbar").offset().top > 50) {
|
||||
$(".scrolling-navbar").addClass("top-nav-collapse");
|
||||
} else {
|
||||
$(".scrolling-navbar").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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user