アニメーションで div の幅を切り替えるにはどうすればよいですか?
HTML:
<div id="toggle-button"></div>
<div id="toggle"></div>
CSS:
#toggle{
height:200px;
width:200px;
background:red;
}
#toggle-button{
height:20px;
width:20px;
background:blue;
}
jQuery:
$(document).ready( function(){
$('#toggle-button').click( function() {
$('#toggle').toggle(function() {
$('#toggle').animate({width:"200px"});
}, function() {
$('#toggle').animate({width:"300px"});
});
});
});
うまくいかない例: http://jsfiddle.net/ZfHZV/1/
編集:私の目標は、青いdivをクリックしたときに幅を変更することです