簡單幾行代碼CSS實現網頁自動打文字效果

廣告也精彩
簡單幾行代碼CSS實現網頁自動打文字效果

實現打開網頁自動打字效果,用于作網站公告等用途非常不錯。

<html>
<head>
<meta charset="UTF-8">
<title>小高教學網簡單實現打字效果</title>
</head>
 
<style type="text/css">
  #type{
 
        width:300px;	/*這里修改文字長度*/
        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;}
    }
</style>
 
<body>
<p id="type">小高教學網【www.xx8g.com】 </p>
</body>
</html>

? 版權聲明

相關文章

暫無評論

none
暫無評論...