css3箭头水平淡入淡出

简介: css3箭头水平淡入淡出
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>css3箭头水平淡入淡出(整理)</title>
<link rel="stylesheet" type="text/css" href="https://at.alicdn.com/t/font_695050_qf5jdjknto.css">
<script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
<style>
@keyframes move {
  0% {left: 0%;  opacity: 0; }
  70% { left: 70%; opacity: 1 }
  100% {left: 100%;opacity: 0;}
}
.move{-webkit-animation-name:move;animation-name:move;position:relative;margin-left:-30px;}
.ar-animated{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;font-style:inherit;-webkit-animation-timing-function:linear;animation-timing-function:linear;font-size: 30px;}
.ar-delay-1s{animation-delay:0.1s;}
.ar-delay-2s{animation-delay:0.2s;}
.ar-delay-3s{animation-delay:0.3s;}
.ar-delay-4s{animation-delay:0.4s;}
.ar-delay-5s{animation-delay:0.5s;}
.ar-delay-6s{animation-delay:0.6s;}
.ar-delay-7s{animation-delay:0.7s;}
.ar-delay-8s{animation-delay:0.8s;}
.ar-delay-9s{animation-delay:0.9s;}
.ar-delay-10s{animation-delay:0.10s;}
</style>
</head>
<body>
<div>
  <span style="width:35px;display: block">
    <i class="move ar-animated ar-delay-4s iconfont icon-arrow-right"></i>
    <i class="move ar-animated ar-delay-3s iconfont icon-arrow-right"></i>
    <i class="move ar-animated ar-delay-2s iconfont icon-arrow-right"></i>
    <i class="move ar-animated ar-delay-1s iconfont icon-arrow-right"></i>
    <i class="move ar-animated iconfont icon-arrow-right"></i>
  </span>
</div>
</body>
</html>
相关文章
|
5月前
|
前端开发
Bootstrap纯CSS3箭头按钮样式
Bootstrap纯CSS3箭头按钮样式
|
10月前
|
前端开发
使用 CSS 的 :before 和 :after 选择器做箭头样式
使用 CSS 的 :before 和 :after 选择器做箭头样式
|
前端开发
css:input数字编辑框number去掉右侧上下箭头
css:input数字编辑框number去掉右侧上下箭头
268 0
css:input数字编辑框number去掉右侧上下箭头
html+css实战190-侧导航布局-箭头
html+css实战190-侧导航布局-箭头
129 0
html+css实战190-侧导航布局-箭头
|
前端开发
【CSS】【HTML】CSS自定义实现箭头变化(持续更新多种多样转动样式)
【参考资料】: www.divcss5.com/rumen/r5084… www.cnblogs.com/daisyyuan/p…
131 0
|
前端开发
CSS气泡提示框 可自定义配置箭头
在线演示 本地下载
1353 0
|
前端开发 JavaScript
CSS3画箭头&amp;calc动态调整高度
准备用bootstrap的treeview画一个权限管理的页面。右边用一个panel。中间加一个箭头。 两边都好弄,关键就是中间的这个箭头不好弄,听说css3可以画箭头,忍不住想试一下。
1686 0
|
前端开发
CSS-用伪类制作小箭头(轮播图的左右切换btn)
先上学习地址:http://www.htmleaf.com/Demo/201610234136.html 作者对轮播图左右按钮的处理方法一改往常,不是简单地用btn.prev+btn.next的图片代替,而是用纯css制作。
1778 0