:
css open closed
#content{
height:150px;
}
#content.open {
background: url("http://torm.vot.pl/breitenbach/templates/breitenbachmedia/images/arrows.png");
}
#content.closed {
background: url("http://torm.vot.pl/breitenbach/templates/breitenbachmedia/images/arrows_down.png");
}
, toggleClass("closed open"), .
, $this.is(":animated"), , jQuery.animate()
, html
<div id="content"
class="closed">
</div>
css JavaScript:
$(document).on('click', '#content', function() {
var $this = $(this);
if(!$this.is(":animated")){
$this.animate({
height: $this.hasClass('closed') ? "300px" : "150px"
},
500,
'easeInQuint',
function() {
$this.toggleClass("closed open");
}
);
}
});
.
.