我想使用一个 jquery 动画两次更改元素的高度,但我不能。怎么做?
我正在使用代码:
$("#animate").click(function() {
$("#content")
.animate({"height": "200px"},{"queue": true, "duration": 500})
.animate({"width": "250px"}, {"queue": true, "duration": 500});
.animate({"height": "100px"},{"queue": true, "duration": 500})
});
什么都没有发生。但是如果我删除任何一个高度动画,它就可以正常工作。提前致谢..