我创建了一个鱼动画,我希望他完成一个完整的(圆形)旋转
function anim() {
$(".fish_wrap").animate({
"left": "-90px" }, 5000);
}
anim();
function AnimateRotate(d){
var elem = $(".fish_wrap");
$({deg: 0}).animate({deg: d}, {
duration: 9000,
step: function(now){
elem.css({
transform: "rotate(" + now + "deg)"
});
}
});
}
AnimateRotate(120);
$(".fish_wrap")
.css({top:200,position:'absolute'})
.animate({top:0}, 8000, function() {
});
这是小提琴链接: