whitegerry
2018-08-09 10:55:46 +08:00
css3 动画选择 position、scale、rotation、opacity。
.banner {
position: relative;
flex: 1;
height: 350px;
background: rgba(0, 144, 255, 0.10);
margin: 18px 10px;
box-sizing: border-box;
border-radius: 10px;
}
.banner::after {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: '';
border-radius: 10px;
box-shadow: 0 8px 55px rgba(0, 0, 0, .12);
opacity: 0;
transition: opacity .3s;
}
.banner:hover::after {
opacity: 1;
}