答案 0 :(得分:3)
您需要用逗号分隔要转换的属性:
p {
opacity: 0;
max-height: 0;
transition: max-height .5s ease, opacity .5s ease;
}
答案 1 :(得分:3)
transition
简写在同一个地方不支持多个属性:
transition: max-height .5s ease, opacity .5s ease;
您还需要overflow: hidden
才能让它看起来像是在滑动。 Updated demo