学习css3动画--撸个打字效果

2018-12-13  本文已影响0人  Rejiu泡泡糖

笔记记完了,看一看,写一写,撸个小东西玩玩,不多BB,show code
(假装这个是完美的打字效果)

<h1>测试一下这个CSS3的打字效果哈</h1>
body {
    background: black;
    color: #fff;
}

h1 {
    width: 32rem;
    margin: 1em 1em;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(26, end) infinite alternate;
}

@keyframes typing {
    from {
        width: 0;
    }
}

额。。。好像有那么点不对劲。。


上一篇 下一篇

猜你喜欢

热点阅读