這篇文章主要介紹了css進行中打點效果,附上程式碼讓大家更簡單易懂得看明白樣式設置,具體操作步驟大家可查看下文的詳細講解,感興趣的小伙伴們可以參考一下。
程式碼如下:
<!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實作進行中打點效果程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!