mirror of
https://github.com/MrEidam/bigredbutton.git
synced 2026-04-17 15:43:31 +00:00
16 lines
480 B
JavaScript
16 lines
480 B
JavaScript
$(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);
|
|
}
|
|
})
|
|
}) |