.wrap {
width:100px;
height:100px;
background-color:rgb(240,236,236);
position:relative;
left:200px;
overflow:hidden;
}
.before {
width:100%;
height:100%;
background-color:rosybrown;
position:absolute;
left:-100px;
top:0;
opacity:0;
}
.after {
width:100%;
height:100%;
background-color:rosybrown;
position:absolute;
right:0px;
z-index:-1;
}
.content {
position:absolute;
z-index:3;
}
更新时间:2022-02-16 23:37:11