您当前的位置: 首页 >  css

知其黑、受其白

暂无认证

  • 0浏览

    0关注

    1250博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

CSS打字效果

知其黑、受其白 发布时间:2022-02-23 10:45:53 ,浏览量:0

在这里插入图片描述

DOCTYPE html>



    
    wgchen
    
    
    
    
    
    
    
        .wrapper {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .typing-demo {
            width: 57ch;
            animation: typing 12s steps(57), blink .5s step-end infinite alternate;
            white-space: nowrap;
            overflow: hidden;
            border-right: 3px solid;
            font-family: monospace;
            font-size: 2em;
        }

        @keyframes typing {
            from {
                width: 0
            }
        }

        @keyframes blink {
            50% {
                border-color: transparent
            }
        }
    




    
        
            https://wgchen.blog.csdn.net专注于前端及PHP开发的技术博客
        
    




关注
打赏
1665558895
查看更多评论
立即登录/注册

微信扫码登录

0.1219s