Added some style logic

This commit is contained in:
2021-12-27 15:04:07 -03:00
parent 70e6ddcedb
commit 0102f9b106
14 changed files with 200 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
export default function showTicTacToe() {
const game = document.getElementsByClassName('game')[0]
setTimeout(() => {
game.classList.remove('hidden')
game.classList.add('animate__fadeInDown')
}, 1000);
}