Javascript:在没有Jquery缓动的情况下以非线性方式递增变量

时间:2016-11-20 19:15:18

标签: javascript jquery variables animation easing

我设法使用documentation page像这样

以非线性方式增加变量
var currentAngle = 0 
$(currentAngle).animate({ currentAngle: 180}, { // from 0 to 180 in 2sec
    duration: 2000,
    easing: 'easeOutBounce',
    complete: function(){
        movingarm = false;
        animatingArm = false;    
    }
});

我正在尝试不使用Jquery现在这样做,纯粹的javascript将是理想的。 有什么建议吗?

由于

0 个答案:

没有答案