This is my first project during my GA Software Engineering Immersive course.
If you want to play, you can visit my game at this address Tic Tac Toe
It's the simplest game ever but if you play against an average opponent you'll never win (cheat codes will be implemented later)
So the rules are on the page, Cross start first. when anyone win of it's a draw, just click the board to replay. The game keep the score until you click the New Game button.
I tried to recreate an old school Arcade Game style design with fonts and glowing effects. I use a 8bits style font from google. A use some text-shadow CSS and blinking animation to recreate a glowing effect like old school arcade game. There is a hidden button you can find to get a nicer effect on the title.
To make it works, I choose to store each play in 2 Objects, one for cross and the other one for circle. There is a main function to play on the board and other functions to check if there is a winner, wich turn is it, render the score and restart the game.
- HTML
- CSS
- Javascript
- I'm working on a single player mode with a CPU player with choice of easy or hard mode.
- Improvements of the design.