我对样式框有疑问。我需要在底部的方框中创建带有阴影的发光效果。制作此效果时我被卡住了。
发光效果,我需要创建:
我试图创建这种效果,但是看起来很糟糕
SEQ <- test_date_split$Date_max_2 - test_date_split$Date_min + 1
newdf <- test_date_split[rep(row.names(test_date_split), SEQ), ]
newdf()$date <- newdf$Date_min + sequence(SEQ)-1
html,
body {
width: 100%;
height: 100%;
margin:0;
}
.container {
background-color: black;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items:center;
}
.glow {
width: 60%;
height: 0px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 0 20px 0px yellow, 0 0 20px 10px #ffc600, 0px 0px 20px 0px yellow;
}
答案 0 :(得分:4)
您可以使用背景色和一些滤镜对此进行近似
.glow {
height:40px;
margin:50px;
background:
radial-gradient(190px 20px,white, gold 15%,transparent 30%),
linear-gradient(to right,transparent, gold,transparent) center/100% 5px no-repeat;
border-radius:100%;
position:relative;
filter:blur(1px);
}
.glow:before {
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:inherit;
filter:blur(7px);
}
body {
background:#000;
}
<div class="glow"></div>