时间:2021-07-01 10:21:17 帮助过:35人阅读
代码如下:
<!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>相关推荐:
用css3实现打点效果实例讲解
纯 CSS3 效果资源收集整理
20 个 CSS 高级技巧汇总
以上就是实例讲解css进行中打点效果的实现的详细内容,更多请关注Gxl网其它相关文章!