
實現打開網頁自動打字效果,用于作網站公告等用途非常不錯。
<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>
? 版權聲明
文章版權歸作者所有,未經允許請勿轉載。
相關文章

暫無評論...