Version - 1.1.1 - 1-43

This commit is contained in:
2023-12-03 22:56:21 +01:00
parent f59c157e8e
commit 906fe7d90f
62 changed files with 6266 additions and 0 deletions

16
Version - 43/js/menu.js Normal file
View File

@@ -0,0 +1,16 @@
$(document).ready(function(){
$('.button').click(function(){
if($(this).hasClass('expand')){
$('ul').slideUp(function(){
$('.button').removeClass('expand');
$('.fas').removeClass('expand');
})
}else{
$(this).addClass('expand');
setTimeout(function(){
$('.fas').addClass('expand');
$('ul').stop().slideDown();
},200);
}
})
})