Jump to content
  • 0

Разделение таблицы линиями на сектора


Katerina23
 Share

Question

Я пишу игру судоку на javascript,использую для этого таблицу table. Как разделить ячейки таблицы линиями на сектора как в судоку. Допустим таблица 16x16 ячеек как провести линии каждые четыре ячейки. 

Вот код:

<!DOCTYPE HTML>
<html>
    <head>
    <title>Судоку</title>
    
    
       <style>
  	
    .game-board {
  			border: 0;
  			border-spacing: 0;
  			border-collapse: collapse;
        background: #fff;
  		}
      
  		.game-board td {
  			width: 25px;
  			height: 25px;
  			line-height: 20px;
  			text-align: center;
  			border: #9cb0ca 1px solid;
  		}
    </style>
    
</head>
    <body>
    <script>
    var board;
    function Sudoku()
    {
        this.W = 16;
        this.H = 16;
        this.init();
    }
    Sudoku.prototype.init = function()
    {
         
        board = this.createGrid();
        board.cellSpacing = 0;
        board.style = "margin: 0px";
        board.className = 'game-board'; 
        document.body.appendChild(board); 
    }
    Sudoku.prototype.createGrid = function()
    {
       var table = document.createElement('table');
       for (var i = 0; i < this.W; i++) 
          { 
            var r = table.insertRow(i);
            for (var j = 0; j < this.H; j++) 
            {   
                var c = r.insertCell(j); 
                c.num = 0;        
                c.index = [i, j]; 
                c.addEventListener("mousedown", this.clickHandler);
            }
          }
          return table;
    }
   Sudoku.prototype.clickHandler = function(e)
   {
          
   }
   var Sudoku = new Sudoku();
</script>
      
    </body>
</html>

Пример, то что я хочу получить

sudoku.thumb.jpg.c21ccecf5a2a887676b47d19333d9352.jpg

Edited by Katerina23
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Если таблицы нельзя разделить линиями, то может это можно сделать как-нибудь с помощью div'ов, т.е. создать таблицу из div контейнеров, потом эту таблицу разделить линиями.

Link to comment
Share on other sites

  • 0

Проверила оба варианта, работают. Только вот у меня генерирующаяся сетка, то есть может быть 9x9 или 16x16. Можно как-нибудь  код ниже добавить в javascript, а вместо 4n подставлять переменную например 3. Ведь в javascript можно указывать имя класса (className) и стили (style), может и это можно как-то записать?

.table tr:nth-child(4n) td {
        border-bottom-width: 4px;
        border-bottom-color: #424242;
      }
      
      .table td:nth-child(4n) {
        border-right-width: 4px;
        border-right-color: #424242;
      }

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy