css 弹跳动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 弹跳动画相关的知识,希望对你有一定的参考价值。
.arrow {
position: absolute;
width: 50px;
height: 50px;
top: 100px;
left: 50%;
transform: translateX(-50%);
}
.arrow {
-moz-animation: arrow 2s infinite;
-webkit-animation: arrow 2s infinite;
animation: arrow 2s infinite;
}
@keyframes arrow {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}
以上是关于css 弹跳动画的主要内容,如果未能解决你的问题,请参考以下文章
css 弹跳动画
css 弹跳球动画
弹跳加载动画特效Bouncing loader
如何跨多个元素同步 CSS 动画?
如何创建弹跳 div 动画
动画视图缩放弹跳?