少し質問があります。jqueryで関数を元に戻すことはできますか?途中にアクションがあるクリック機能があります。クリックする前にこの要素を状態に戻すことはできますか?Thx4ヘルプ。
$('.bottom_panel_button_02').click(function(){
$('#recipe_panel').css('opacity','1');
$('.default_clock, .info_top_panel .random_title, .bottom_panel_button_06').css('display','none');
$('.bottom_main_panel_button').css('background','url("img/ap_bottom_panel_button_white.png") center bottom no-repeat')
setTimeout(function(){
$('.arrow_up, .arrow_down').fadeIn(300);
},500);
$('.main_content, .oven_panel').fadeOut(200);
});