我设法使用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将是理想的。 有什么建议吗?
由于