纯CSS实现简单的打字效果
html代码:
<p class="print">只需要几行代码就可以实现简单的打字效果哦~怎么样,好玩吗~</p>
css代码:
.print {
width: 100%;
white-space: nowrap;
overflow: hidden;
-webkit-animation: dy 3s steps(60, end) infinite;
animation: dy 3s steps(50, end) infinite;
}
@-webkit-keyframes dy {
from {
width: 0;
}
}
@keyframes dy {
from {
width: 0;
}
}
页:
[1]