html 弹跳球
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 弹跳球相关的知识,希望对你有一定的参考价值。
<style>
#ball {
width: 100px;
height: 100px;
margin: 50px auto;
position: relative;
border-radius: 50%;
background: linear-gradient(
35deg,
#ccffff,
#ffcccc
);
animation-name: bounce;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes bounce{
0% {
top: 0px;
}
50% {
top: 249px;
width: 130px;
height: 70px;
}
100% {
top: 0px;
}
}
</style>
<div id="ball"></div>
以上是关于html 弹跳球的主要内容,如果未能解决你的问题,请参考以下文章
javascript 弹跳球动画
html 弹跳球
html 帆布弹跳球,javascript
css 弹跳球动画
消除滑动切换上的弹跳球效果
算法简单题_球弹跳高度的计算