时间:2021-07-01 10:21:17 帮助过:94人阅读
代码如下:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>进行中...</title> <style> dot { display:inline-block; width:3ch; text-indent:-1ch; vertical-align:bottom; overflow:hidden; animation:dot 3s infinite step-start both; } @keyframes dot { 33% { text-indent: 0; } 66% { text-indent: -2ch; } } </style> </head> <body> <a href="javascript:">进行中<dot>...</dot></a> </body> </html>
以上就是css实现进行中打点效果代码分享的详细内容,更多请关注Gxl网其它相关文章!