$(function(){ // $('.comm_ul').on('click','.comm_li',function(){ // // $('.comm_li').removeclass('comm_liactive'); // $(this).addclass('comm_liactive'); // // }); // // $('.right_li').eq(0).css('display','block'); $('.comm_btn').click(function(){ if($(this).find('.fa').hasclass('fa-chevron-right')){ $(this).parent('.comm_left').animate({left:"0px"},500); $('.comm_left').css('box-shadow','0px 0px 0.263157rem rgba(0, 0, 0, 0.2)'); $(this).find('.fa').removeclass('fa-chevron-right'); $(this).find('.fa').addclass('fa-chevron-left'); }else{ $(this).parent('.comm_left').animate({left:"-3.421052rem"},500,function(){ $('.comm_left').css('box-shadow','0px 0px 0px rgba(0, 0, 0, 0.2)'); }); $(this).find('.fa').addclass('fa-chevron-right'); $(this).find('.fa').removeclass('fa-chevron-left'); } }) })