Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/69PercentFat/Js-Chess/

Board.js /cody/69PercentFat/Js-Chess/Board.js
221 Views
0 Comments
const startBoard = game => {
const board = document.getElementById('board');
const squares = board.querySelectorAll('.
README.md /cody/69PercentFat/Js-Chess/README.md
338 Views
0 Comments


# Js-Chess

Welcome to Js-Chess, a customizable and visually appealing chess game implemented in JavaScript. This project feat
chess.css /cody/69PercentFat/Js-Chess/chess.css
151 Views
0 Comments
*{
margin: 0;
padding: 0;
}
body{
background: #ddd;
}
#board{
game.js /cody/69PercentFat/Js-Chess/game.js
205 Views
0 Comments
class Game {
constructor(pieces) {
this.pieces = pieces;
this.turn = 'white';
this.clickedPiece = null;
this._event
img /cody/69PercentFat/Js-Chess/img/
12 Items
  • black-bishop.png
  • black-king.png
  • black-knight.png
  • black-pawn.png
  • black-queen.png
  • black-rook.png
  • white-bishop.png
  • white-king.png
  • index.html /cody/69PercentFat/Js-Chess/index.html
    463 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title></title>
    <link rel="stylesheet" type="text/css" href="chess.css">
    </head>
    <body>

    pieces /cody/69PercentFat/Js-Chess/pieces/
    7 Items
  • Bishop.js
  • King.js
  • Knight.js
  • Pawn.js
  • Piece.js
  • Queen.js
  • Rook.js