【发布时间】:2015-06-08 15:51:23
【问题描述】:
我有这个场景可以让球沿着弯曲的路径制作动画。我不知道使用css3 来实现它。我知道没有path 动画之类的东西。
有没有办法在弯曲的背景上为球设置动画。
这里是Live Demo
我的代码:
div.path {
background:url(https://dl.dropboxusercontent.com/u/10268257/images/path.png) no-repeat center bottom;
width:397px;
height:66px;
position: relative;
}
div.ball {
background : green;
width:20px; height:20px;
border-radius:50%;
}
<div class="container">
<div class="path">
<div class="ball"></div>
</div>
</div>
【问题讨论】: