3 回答
TA贡献1993条经验 获得超5个赞
如果您有想要以同样的方式过渡几个特定的属性(因为你也有你特别一些属性并不想转型,比方说opacity),另一种选择是做这样的事情(略去了前缀):
.myclass {
transition: all 200ms ease;
transition-property: box-shadow, height, width, background, font-size;
}
第二个声明会覆盖其all上方的简短声明中的,并(有时)使代码更简洁。
/* prefixes omitted for brevity */
.box {
height: 100px;
width: 100px;
background: red;
box-shadow: red 0 0 5px 1px;
transition: all 500ms ease;
/*note: not transitioning width */
transition-property: height, background, box-shadow;
}
.box:hover {
height: 50px;
width: 50px;
box-shadow: blue 0 0 10px 3px;
background: blue;
}
<p>Hover box for demo</p>
<div class="box"></div>
TA贡献1848条经验 获得超2个赞
通过在过渡不透明度属性时延迟0.5秒,元素在整个高度过渡期间将完全透明(因此不可见)。因此,您真正看到的唯一一件事就是不透明度发生变化。因此,您将获得与将height属性保留在过渡之外相同的效果:
“过渡:不透明度.5s .5s;”
那是你想要的吗?如果不是这样,并且您希望看到高度过渡,则在过渡的整个过程中,透明度都不能为零。
- 3 回答
- 0 关注
- 709 浏览
相关问题推荐
添加回答
举报