New Upload (Started Main Page)

This commit is contained in:
2021-11-28 20:15:13 +00:00
parent 11ef6304e0
commit bc5dc8598e
326 changed files with 45782 additions and 10487 deletions

20
js/mdb.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
js/mdb.min.js.map Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,40 +0,0 @@
(function ($) {
"use strict"; // Start of use strict
// Smooth scrolling using anime.js
$('a.js-scroll-trigger[href*="#"]:not([href="#"])').on('click', function () {
if (
location.pathname.replace(/^\//, "") ==
this.pathname.replace(/^\//, "") &&
location.hostname == this.hostname
) {
var target = $(this.hash);
target = target.length ?
target :
$("[name=" + this.hash.slice(1) + "]");
if (target.length) {
anime({
targets: 'html, body',
scrollTop: target.offset().top,
duration: 1000,
easing: 'easeInOutExpo'
});
return false;
}
}
});
// Closes responsive menu when a scroll trigger link is clicked
$(".js-scroll-trigger").on('click', function () {
$(".navbar-collapse").collapse("hide");
});
/* Activate scrollspy to add active class to navbar items on scroll
$('body').scrollspy({
target: "#sideNav"
});
*/
})(jQuery); // End of use strict