ある機能が完了した後、別の機能を動作させるのに苦労しています。コードの前半は機能しますが、その後の機能は機能しません。私は何を間違っていますか?
HTML
<div id="feature">
<div id="open"></div>
</div>
CSS
#feature {
position:relative;
width:100%;
height:450px;
}
#open {
position:relative;
width:100%;
height:200px;
background:red;
}
jQuery
$('#open').click(function () {
$(this).animate({
height: 50
}, {
duration: 'slow'
}).css('overflow', 'visible'),
function () {
$('#open').animate({
height: 200
}, {
duration: 'slow'
})
};
// Animation complete.
});
JS フィドル。