number-cell 没有 top 和 left 的值

来源:2-1 游戏逻辑

云梦无痕

2016-03-31 11:26

function updateBoardView(){


    $(".number-cell").remove();

    for( var i = 0 ; i < 4 ; i ++ )

        for( var j = 0 ; j < 4 ; j ++ ){

            $("#grid-container").append( '<div class="number-cell" id="number-cell-'+i+'-'+j+'"></div>' );

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


            if( board[i][j] == 0 ){

                theNumberCell.css('width','0px');

                theNumberCell.css('height','0px');

                theNumberCell.css('top',getPosTop(i,j) + 50 );

                theNumberCell.css('left',getPosLeft(i,j) + 50 );

            }

            else{

                theNumberCell.css('width','100px');

                theNumberCell.css('height','100px');

                theNumberCell.css('top',getPosTop(i,j));

                theNumberCell.css('left',getPosLeft(i,j));

                theNumberCell.css('background-color',getNumberBackgroundColor( board[i][j] ) );

                theNumberCell.css('color',getNumberColor( board[i][j] ) );

                theNumberCell.text( board[i][j] );

            }

        }

}


写回答 关注

1回答

  • D__C
    2016-04-01 07:46:41
     theNumberCell.css('top',getPosTop(i,j) + 50 );
     theNumberCell.css('left',getPosLeft(i,j) + 50 );


慕课网2048私人订制

慕课网这款“2048私人订制”通过大神老的讲解学习到游戏结构的开发

70014 学习 · 588 问题

查看课程

相似问题