是)我有的:
在屏幕上移动和离开屏幕的平面的绝对定位图像。
我需要的:
我需要动画每 10 秒循环/重新启动一次,即飞机在每个循环开始时出现在其默认绝对位置。
问题:
我尝试了很多例子,但我能得到的最接近的例子是使用 .queue 和 .callee的这个例子。它循环播放,但需要反向动画来重新定位图像。相反,我需要在没有动画的情况下重新定位图像。
我的代码:
动画开始的CSS(并且需要为每个循环重新启动)......
<style>
#main_content_container{
width:800px;
margin:0 auto;
position:relative;
height:2000px;
}
#sprite_plane{
position:absolute;
left:-400px;
top:400px;
opacity:0;
filter:alpha(opacity=0); /* For IE8 and earlier */
}
</style>
jQuery动画...
<script>
$("#sprite_plane").animate({
opacity: 1,
"left": "+=430px",
"top": "-=530px",
}, 1500 );
</script>
的HTML...
<div id="main_content_container">
<img src="images/plane.png" alt="" width="120" height="120" id="sprite_plane" />
</div>