900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > CSS实现中英文混合打字效果实现

CSS实现中英文混合打字效果实现

时间:2022-06-19 21:45:04

相关推荐

CSS实现中英文混合打字效果实现

效果图如下:

<style>.typing {color: plum;font-size: 24px;width: 18.5em;height: 1.25em;border-right: 1px solid transparent;animation: typing 3.5s steps(37, end), blink-caret .75s step-end infinite;font-family: Consolas, Monaco;word-break: break-all;overflow: hidden;margin: 200px;}/* 打印效果 */@keyframes typing {from {width: 0;}to {width: 18.5em;}}/* 光标闪啊闪 */@keyframes blink-caret {from,to {border-color: transparent;}50% {border-color: currentColor;}}</style><p class="typing">中英文mixed打字effect,作者:小小白</p>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。