css进行中打点效果

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>进行中...</title>
<style>
dot {
  display:inline-block; 
  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>

  

原文地址:https://www.cnblogs.com/wangjae/p/7171551.html