设为首页 加入收藏

TOP

css进行中打点效果
2017-10-10 16:46:25 】 浏览:3891
Tags:css 进行 打点 效果
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<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="java script:">进行中<dot>...</dot></a>
</body>
</html>

  

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇CSS深入理解学习笔记之border 下一篇CSS深入理解学习笔记之border

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目