first commit

This commit is contained in:
2026-03-13 23:33:08 +01:00
commit 9ef71d5289
872 changed files with 57265 additions and 0 deletions

19
html/assets/js/custom.js Normal file
View File

@@ -0,0 +1,19 @@
(function($) {
'use strict';
// Main Navigation
$( '.hamburger-menu' ).on( 'click', function() {
$(this).toggleClass('close');
$('.site-branding').toggleClass('hide');
$('.site-navigation').toggleClass('show');
$('.site-header').toggleClass('no-shadow');
});
// Scroll to Next Section
$( '.scroll-down' ).click(function() {
$( 'html, body' ).animate({
scrollTop: $( '.scroll-down' ).offset().top + 100
}, 800 );
});
})(jQuery);