我一直试图让侧边栏根据点击向左和向右滑动。
我确实尝试过切换无法让它工作。
我现在已经尝试过这段代码,它在第一次单击时可以工作,但是一旦由于某种原因单击它就不能在再次单击时工作:
$('.pushbutton').on('click',function(){
$('.left_sidebar, .footer').animate({left: "-320px"}, 800 );
$('.main_body_right').animate({marginLeft: "25px"}, 800 );
$('.pushbutton').animate({fontSize: "24px",fontWeight: "400",paddingTop: "3px"}, 500 );
$('.pushbutton').html('+');
$('.pushbutton').attr('class','pushbuttonplus');
});
$('.pushbuttonplus').on('click',function(){
$('.left_sidebar, .footer').animate({left: "0px"}, 800 );
$('.main_body_right').animate({marginLeft: "325px"}, 800 );
$('.pushbuttonplus').animate({fontSize: "26px",fontWeight: "700",paddingTop: "0px"}, 500 );
$('.pushbuttonplus').html('-');
$('.pushbuttonplus').attr('class','pushbutton');
});