web小游戏 2048制作(四):过场动画 showanimation2048.js

function showNumberAnimation( i , j , randNumber ){

    var numberCell = $('#number-cell-' + i + "-" + j );

    numberCell.css('background-color',getBackGroundColor( randNumber ) );
    numberCell.css('color',getNumberColor( randNumber ) );
    numberCell.text( randNumber );

    numberCell.animate({
        width:'100px',
        height:'100px',
        top:getPosTop( i , j ),
        left:getPosLeft( i , j )
    },50);
}
function showMoveAnimation( fromx , fromy , tox, toy ){

    var numberCell = $('#number-cell-' + fromx + '-' + fromy );
    numberCell.animate({
        top:getPosTop( tox , toy ),
        left:getPosLeft( tox , toy )
    },200);
}
function updateScore(score)
{
	$('#score').text(score);
}

你可能感兴趣的:(web小游戏 2048制作(四):过场动画 showanimation2048.js)