为什么函数沿y轴开始正弦波如此高?

时间:2011-10-18 01:22:51

标签: jquery animation bezier

看看这个正弦波动画。注意它的起始位置和结束位置。

这两个必须相同,但它们不是。

我认为解决方案是保留上一次迭代中最后使用的p值并将其应用于当前的p值。

以下图片展示http://jsfiddle.net/WPnQG/4/ enter image description here

function float(dir){
    var x_current = $("div").offset().left;
    var y_current = $("div").offset().top;
    var SineWave = function() {
        this.css = function(p) {
            var s = Math.sin(Math.abs(p-1)*10);
            if (!dir){// flip the sin wave to continue traversing
               s = -s;
            }
            var x =  300 -p * 300;
            var y = s * 100 + 150;
            //var o = ((s+2)/4+0.1); //opacity change
            // add the current x-position to continue the path, rather than restarting
            return {top: y + "px", left: x_current + x + "px"};
        } 
    };

    $("div").stop().animate({
        path: new SineWave
    }, 5000, 'linear', function(){
        // avoid exceeding stack
        // uncomment for this to continue animating
        //setTimeout(function(){float(!dir)}, 0);
    });

}

float(true);

1 个答案:

答案 0 :(得分:1)

我找不到有关path属性的任何文档,但p的值从1开始并逐渐过渡到0。