CSS:animation blink
/*普通闪烁效果 */ @keyframes blink { 50% { color: transparent } } .highlight { animation: 1s blink 3 steps(1); /* 或用step-end */ }