Version 41 - Settings

This commit is contained in:
2023-10-07 13:00:40 +02:00
parent df08840c37
commit e4137f53bd
14 changed files with 489 additions and 265 deletions

16
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);
}
})
})