首页 >web前端 >css教程 >css做出打点效果

css做出打点效果

php中世界最好的语言
php中世界最好的语言原创
2018-03-21 14:49:342494浏览

这次给大家带来css做出打点效果,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>

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:

css3的Transition平滑过渡菜单栏实现

box-shadow的阴影效果如何使用

常用的CSS实现垂直居中的4种方法

以上是css做出打点效果的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn