css实现文字切换

.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: '钱途似锦';
    }
}

 

posted @ 2023-09-21 10:21  全玉  阅读(63)  评论(0编辑  收藏  举报