先上图
<div class="box">
<section class="section">
测试
</section>
<aside class="aside">
</aside>
</div>
css代码:
.box{
height: 300px;
width: 300px;
border: 1px solid #d1d1d1;
position: relative;
}
.section{
height: 100%;
width:100%;
text-align: center;
line-height: 300px;
}
.box:hover aside{
transform: scale(1);
opacity: .4;
}
.aside{
position: absolute;
top: 0px;
left: 0px;
transition: all .4s ease-in-out;
width: 100%;
height:100%;
background: #000;
transform: scale(0);
}