标签::hover ansi .com http code 动态 元素 max 详细说明
CSS 支持动画的属性中的 height 属性如下:
height :yes, as a length, percentage or calc()
即:当 height 的值是 length,百分比或 calc() 时支持 CSS3 过渡。
所以当元素 height : auto 时,是不支持 CSS3 动画的。
div{
max-height: 0;
transition: max-height .5s;
}
div:hover{
max-height: 200px;
}
这里不做详细说明,可以看一下大神的demo。
不定高度动态元素height CSS3 transition过渡动画实例页面
标签::hover ansi .com http code 动态 元素 max 详细说明
原文地址:https://www.cnblogs.com/macq/p/9047766.html