我有一个动画,它淡入淡出<div id="robert">stuff</div>
,然后让它遵循下面指定的路径。我想知道是否有某种方法可以减慢贝塞尔曲线动画部分的速度?我已将其设置为“摇摆”以进行宽松,但是否有办法减慢它的速度?
var pathRobert = {
start: {
x: 408,
y: 303,
angle: 72.594,
length: 1.390
},
end: {
x: 510,
y:375,
angle: 233.366,
length: 1.138
}
};
$(window).scroll(function(){
//first animation for ipad with hands
if ((withinViewport((testimonials)) == true) && (peopleBlock !=0)){
peopleBlock = 0;
$("#robert").fadeTo('fast',1).animate({
path : new $.path.bezier(pathRobert)
},"swing");
}
});
谢谢,
亚历克斯