简单几行代码CSS实现网页自动打文字效果

0.0/0人
免费

更新时间:2022-11-26 01:21:21

所属分类:其他资源

评论回复:0

 

暂无演示 下载权限

简单几行代码CSS实现网页自动打文字效果-第3张插图

实现打开网页自动打字效果,用于作网站公告等用途非常不错。

  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>10站长网简单实现打字效果</title>
  5. </head>
  6. <style type="text/css">
  7. #type{
  8. width:300px; /*这里修改文字长度*/
  9. white-space:nowrap;
  10. overflow:hidden;
  11. -webkit-animation: dy 3s steps(60, end) infinite;
  12. animation: dy 3s steps(50, end) infinite;
  13. }
  14. @-webkit-keyframes dy{
  15. from { width: 0;}
  16. }
  17. @keyframes dy{
  18. from { width: 0;}
  19. }
  20. </style>
  21. <body>
  22. <p id="type">10站长网【www.xx8g.com </p>
  23. </body>
  24. </html>

百度
- MB

相关推荐

首页 导航 会员 客服