html 弹跳CSS3加载动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 弹跳CSS3加载动画相关的知识,希望对你有一定的参考价值。
.loader {
text-align: center;
}
.loader span {
display: inline-block;
vertical-align: middle;
width: 10px;
height: 10px;
margin: 50px auto;
background: black;
border-radius: 50px;
-webkit-animation: loader 0.9s infinite alternate;
-moz-animation: loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2) {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
}
.loader span:nth-of-type(3) {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
}
@-webkit-keyframes loader {
0% {
width: 10px;
height: 10px;
opacity: 0.9;
-webkit-transform: translateY(0);
}
100% {
width: 24px;
height: 24px;
opacity: 0.1;
-webkit-transform: translateY(-21px);
}
}
@-moz-keyframes loader {
0% {
width: 10px;
height: 10px;
opacity: 0.9;
-moz-transform: translateY(0);
}
100% {
width: 24px;
height: 24px;
opacity: 0.1;
-moz-transform: translateY(-21px);
}
}
<div class="loader">
<span></span>
<span></span>
<span></span>
</div>
以上是关于html 弹跳CSS3加载动画的主要内容,如果未能解决你的问题,请参考以下文章
弹跳加载动画特效Bouncing loader
css3动画animate.css的使用
cubic-bezier贝塞尔曲线css3动画工具
7.1 万 Star!超实用,60 多种动画效果的 CSS 库
CSS3,JS可用于刷新按钮或者加载动画的动画
css3 同时加载两个动画