JavaScript でスライダー モジュールを構築しようとしています。すべてが機能しますが、アニメーションは直線的で、滑らかでも自然でもありません。イージング方程式を接続することを考えていましたが、どこに行くのかわかりません。
ここから借りたアニメーション関数は次のとおりです。
function animate(elem, style, unit, from, to, time) {
if (!elem) return;
var start = new Date().getTime(),
timer = setInterval(function() {
var step = Math.min(1,(new Date().getTime()-start)/time);
elem.style[style] = (from+step*(to-from))+unit;
if (step == 1) clearInterval(timer);
},25);
elem.style[style] = from+unit;
}
そして、ここからのイージング関数:
/**
* @param {Number} t The current time
* @param {Number} b The start value
* @param {Number} c The change in value
* @param {Number} d The duration time
*/
function easeInCubic(t, b, c, d) {
t /= d;
return c*t*t*t + b;
}
私はすでに持っている値を次のように渡してみました:
elem.style[style] = easeInCubic(start, from, to, time) + unit;
しかし、明らかにそれは間違っています (私は数学が得意ではありません。もちろん、推測にすぎません)。
2つを結合するにはどうすればよいですか?