css实现文字切换

发布时间 2023-09-21 10:29:46作者: 看风景就
.textc {
    --num: '今日大吉';
    animation: text-change 3s linear forwards;
}
.textc::after{
    content: var(--num);
    font-size: 20px;
}
@keyframes text-change {
    33% {
        --num: '明日好运';
    }
    67% {
        --num: '后天康复';
    }
    100% {
        --num: '钱途似锦';
    }
}