$("a.details")
.click(function () {
var $this = $(this);
$this.parents(".subscription")
.find('.plan-details')
.stop(true, true)
.animate({
height: ['toggle', 'easeOutBounce']
}, 'slow',
function () {
$this.text(function (i, text) {
return text == 'View Details' ? 'Hide Details' : 'View Details';);
}) ,
function (e) {
$this.parents(".subscription")
.find('.plan-details')
.stop(true, true)
.animate({
height: 'toggle'
});
});
小提琴:http: //jsfiddle.net/6fCrd/
...不知道我在这里做错了什么,它不起作用。它应该以弹跳效果向下滑动,并更改触发文本。