This commit is contained in:
2025-10-02 00:49:12 +02:00
commit 2ebd800d44
146 changed files with 2960 additions and 0 deletions

14
js/nav-mobile.js Normal file
View File

@@ -0,0 +1,14 @@
$(document).ready(function(){
var toggleNav = false;
$("#nav-buton-js").click(function(){
// Your code to be executed when the button is clicked
$(".nav-links").toggleClass("nav-links-expanded");
console.log("Button clicked!");
});
$("#drop-act").click(function(){
// Your code to be executed when the button is clicked
$(".dropdown-content").toggleClass("dropdown-active");
console.log("Button clicked!");
});
});