ジャンプ距離、ジャンプの高さ、ジャンプの「速度」の3つの変数を使用してジャンプをアニメートしようとしています。
これが動作中のJSFiddleデモです。ただし、アニメーションジャンプを完璧な放物線にしたいと思います。
var y = 300;
var x = 0;
var jh = 100;
var jw = 200;
var c = 0;
var inter = setInterval(function () {
c++;
// if box reaches jump height it should fall down
y = (c >= jh) ? y + 1 : y - 1;
// if box reaches jump distance
if (x == jw) clearInterval(inter);
x++;
$('.box').css({
'top': y + 'px',
'left': x + 'px'
});
}, 20);