文件
halo-theme/src/styles/typed-text.scss
T
2026-01-20 17:06:13 +08:00

15 行
258 B
SCSS

/* 光标样式 */
.typed-text::after {
content: '|';
display: inline-block;
opacity: 0;
animation: blink 0.7s infinite alternate; /* 闪烁动画 */
vertical-align: text-bottom;
}
/* 闪烁动画 */
@keyframes blink {
to {
opacity: 1;
}
}