答案 0 :(得分:1)
你的意思是这样的:
div {
background: url(http://lorempixel.com/400/400);
width: 400px;
height: 400px;
position: relative;
}
div:after {
position: absolute;
height: 80px;
width: 160px;
background: rgba(255, 255, 255, 0.7);
content: " ";
top: calc(50% - 40px);
left: calc(50% - 80px);
border-radius: 50%;
box-shadow: 0px 0px 50px 50px rgba(255, 255, 255, 0.7);
}
<div></div>