hi-ucs/node_modules/animate.css/source/attention_seekers/flash.css

17 lines
136 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
}