瞬く星空Twinkling Stars
.cg-bg-stars {
position: relative;
width: 220px;
height: 120px;
border-radius: 10px;
overflow: hidden;
background: linear-gradient(180deg, #0B1026, #1A2342);
}
.cg-bg-stars i {
position: absolute;
width: 2px;
height: 2px;
border-radius: 50%;
background: #fff;
box-shadow:
30px 18px 0 #fff, 74px 44px 0 rgba(255,255,255,.8), 120px 12px 0 #fff,
160px 58px 0 rgba(255,255,255,.7), 196px 30px 0 #fff, 48px 84px 0 rgba(255,255,255,.9),
140px 96px 0 #fff, 90px 66px 0 rgba(255,255,255,.6), 186px 88px 0 rgba(255,255,255,.8);
animation: cg-bg-stars-twinkle 2.4s ease-in-out infinite;
}
.cg-bg-stars i:last-child {
transform: translate(12px, 8px);
animation-delay: 1.2s;
}
@keyframes cg-bg-stars-twinkle {
50% { opacity: .3; }
}
<div class="cg-bg-stars"><i></i><i></i></div>