mirror of
https://github.com/FranP-code/Tic-Tac-Toe-Game.git
synced 2025-10-12 23:52:39 +00:00
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
export default function showTicTacToe() {
|
|
|
|
const game = document.getElementsByClassName('game')[0]
|
|
|
|
setTimeout(() => {
|
|
|
|
game.classList.remove('hidden')
|
|
game.classList.add('animate__fadeInDown')
|
|
|
|
}, 1000);
|
|
} |