mirror of
https://github.com/MrEidam/bigredbutton.git
synced 2026-04-17 15:43:31 +00:00
18 lines
562 B
JavaScript
18 lines
562 B
JavaScript
function menuStart(){
|
|
$(document).ready(() => {
|
|
$('.button').click(() => {
|
|
if($('.button').hasClass('expand')){
|
|
$('ul').slideUp(() => {
|
|
$('.button').removeClass('expand');
|
|
$('.fas').removeClass('expand');
|
|
});
|
|
}else{
|
|
$('.button').addClass('expand');
|
|
setTimeout(() => {
|
|
$('.fas').addClass('expand');
|
|
$('ul').stop().slideDown();
|
|
},50);
|
|
}
|
|
})
|
|
})
|
|
} |