Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <style> 
    td { width: 28px; height: 28px; background: white; border: 1px solid black; cursor: pointer;} 
    table { border-collapse: collapse; margin-right: -1px;}
    button { display: inline-block; width: 120px; margin-top: 20px; padding: 5px 0; border: 2px solid #dadada; border-radius: 5px; text-align: center; cursor: pointer;}
    button:hover {background: #f2e41f; }
    .black { background: black; }
    .conversely td { background: black; }
    .conversely .black { background: white; }
  </style> 
</head>
<body>
  <button id="btn-for-table">Поменять цвета</button>
</body>
</html>
 
function Field(width, height, mines) {
  this.width = width;
  this.height = height;
  this.mines = mines;
}
Field.MINE = 'mine';
Field.prototype.trim = function(str) { 
  return str.replace(/^\s+|\s+$/g,"");
};
Field.prototype.hasClass = function(node, klass) { 
  var classes = ' ' + node.className.replace(/\s/, ' ') + ' ';
  
  if ( classes.indexOf(' ' + klass + ' ') >= 0 ) { 
    return true; 
  }
  
  return false;
};
Field.prototype.addClass = function(node, klass) {
  if ( !hasClass(node, klass) ) {
    if ( node.className.length !== 0 ) {
      node.className += ' ' + klass;
    } else {
      node.className = klass;
    }
  }
  
  return node;
};
Field.prototype.removeClass = function(node, klass) {
  if ( hasClass(node, klass) ) {
    var classes = ' ' + node.className + ' ',
        regexp = new RegExp(" " + klass + "(?= )", 'g');
    
    node.className = trim( classes.replace(regexp, ' ') );
  }
  
  return node;
};
Field.prototype.toggleClass = function(node, klass) {
  if ( !hasClass(node, klass) ) {
    return addClass(node, klass);
  } else {
    return removeClass(node, klass);
  }
};
Field.prototype.generateField = function() {
  var body = document.body,
      table = document.createElement('table'),
      tr;
  
  body.insertBefore(table, body.firstChild);
  
  this.cells = [];
  
  for (var k = 0; k < this.width; k++) {
    tr = table.insertRow();
    
    this.cells[k] = [];
    
    for (var j = 0; j < this.height; j++) {
      this.cells[k][j] = new Cell(tr);
    }
  }
  
  generateMines(this.cells);
};
Field.prototype.generateMines = function(cells) {
  var mines = 0;
  
  while (this.mines >= mines) {
    for (var i = 0; i < cells.length; i++) {
      for (var k = 0; k < cells[i].length; k++) {
        if (Math.random() * 2 > 1) {
          cells[i][k][Field.MINE] = true;
        }
      }
    }
  }
  
};
function Cell(tr) {
  tr.insertCell();
}
/*var button = document.getElementById('btn-for-table');
table.addEventListener('mousedown', function(event) {
  var target = event.target;
  
  if (target.tagName == 'TD') {
    toggleClass(target, 'black');
  }
});
button.addEventListener('click', function(event) {
  toggleClass(table, 'conversely');
});*/
var field1 = new Field(8, 8, 8);
field1.generateField();
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers