1. 程式人生 > >CSS讓一個元素一閃一閃的

CSS讓一個元素一閃一閃的

post color mes init log blog mat ani ear

.heart{
    animation:heart 1s ease infinite;
}

@keyframes heart {
        0% {opacity:0.1;}
        100%{opacity:1;}
 }

CSS讓一個元素一閃一閃的