问题出在auto
. 将其更改为某个固定值,您就完成了。
$("#sidebar").css("width" , "200px");
检查这个演示
CSS
.o{
display:block;
float:right;
width:30px;
border-radius:10px;
height:300px;
overflow:hidden;
background-color:black;
}
.out{
display:block;
float:right;
width:40%;
border-radius:10px;
height:300px;
background-color:black;
}
.i{
display:none;
width:200px;
border-radius:10px;
height:200px;
overflow:hidden;
background-color:grey;
margin:10px 50px 10px 10px;
}
.i2{
display:block;
width:100px;
border-radius:10px;
height:100px;
background-color:orange;
margin:10px 50px 10px 10px;
}
JS
$(document).ready(function(){
$('.o').click(function(){
$(this).toggleClass('out',1000);
if ($('.i').css('display')=='block'){
$('.i').fadeOut('slow');
}
else{
$('.i').fadeIn(1000);
}
});
});