【发布时间】:2014-10-27 17:42:49
【问题描述】:
根据this answer,我们可以为max-height 属性设置动画,但是由于某种原因,动画不适用于像这样指定的max-height 属性(see plunker):
.animated-div {
overflow: hidden;
background: lightblue;
opacity:1;
height:500px;
}
.animated-div.ng-hide-add.ng-hide-add-active,
.animated-div.ng-hide-remove.ng-hide-remove-active {
transition:all linear 0.5s;
}
.animated-div.ng-hide {
height:0;
opacity:0;
}
但是,如果我将 max-height 更改为 height ,效果会很好。有什么问题?
【问题讨论】: