码迷,mamicode.com
首页 > Web开发 > 详细

css3 实现打字机效果

时间:2020-04-01 14:56:41      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:ima   dev   space   eps   css   ati   letter   ram   ice   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .typer_main{
            font-size: 1.8rem;
            font-weight: normal;
            letter-spacing: .3rem;
            -webkit-animation: typer 5s steps(50, end) forwards;
            animation: typer 5s steps(50, end) forwards;
        }
        .typer{
            width:100%;
            white-space:nowrap;
            overflow:hidden;
        }
        @-webkit-keyframes typer{
            from { width: 0;}
        }

        @keyframes typer{
            from { width: 0;}
        }
    </style>
</head>
<body>
    <h1 class="typer typer_main">come on bro!</h1>
</body>
</html>

 

css3 实现打字机效果

标签:ima   dev   space   eps   css   ati   letter   ram   ice   

原文地址:https://www.cnblogs.com/Mr-Rshare/p/12612184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!