css進行中打點效果程式碼例項

antzone發表於2017-04-11

分享一段程式碼程式碼例項,它利用css實現了進行中打點效果。

比如提交進行中,視訊下載進行中的打點效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!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>

相關文章