我现在在网上浏览了一天多,仍然找不到以下问题的有效解决方案。
- 一个 div 应该从无到有从下向上增长到 100%
- 文本应该淡入
- 然后超时
- 那么文本应该淡出
- 然后 div 应该向 div 的底部收缩并消失。
.max{
max-height:100%;height:100%;color:#fff;
-moz-transition-property:max-height,height, color;
-moz-transition-duration:3s,3s,1s;
-moz-transition-delay:0s,0s,2s;
}
.min{
max-height:0%;height:0%;color:transparent;
-moz-transition-property:max-height,height, color;
-moz-transition-duration:3s,3s,1s;
-moz-transition-delay:1s,1s,0s;
}
如何将 max 和 min 序列化为一个 CssClass 如果不可能,如何以另一种方式进行。但这不会飞。有人对此有一个好主意或经验吗?