<div class="ani"></div>
.ani{position:relative;width:100px;height:100px;background:red;}
.ani:before{
content:""; position:absolute; width:100px; height:100px; background:rgba(0,0,0,.5);
top:0;
left:0;
}我想给after伪元素的height 从 100px 变化到 0,产生一个很简单的动画效果?不知道该如何去做?
1 回答
收到一只叮咚
TA贡献1821条经验 获得超4个赞
.ani{position:relative;width:100px;height:100px;background:red; }
.ani:before{
content:"";
position:absolute;
width:100px;
height:100px;
background:rgba(0,0,0,.5);
top:0;
left:0;
transition:all 0.5s;
}
.ani:hover:before{
height:0;
}
添加回答
举报
0/150
提交
取消