Skip to content

ed-averi/tic-tac-toe

Repository files navigation

You can have a look by clicking here! <-

First we start with an NPM project, so in the terminal we do the following:

npm init -y

In this project Parcel will be used as a development dependency therefore I go to terminal and do the following:

npm i parcel --save-dev

More about Parcel

Parcel DOCS

Generate a ts config

npx tsc --init

Once I have the tsconfig.json

Using Formal Library by Austin Beaufort to style the button

Background color Animation with CSS

There are 2 easy ways to animate the background color with modern CSS:

Use CSS transition to progressively change the background color.

<div id="demo">Demo</div>

#demo { transition: background-color 1s }

document.getElementById("demo").style.backgroundColor = "red";


Use CSS keyframes to specify a sequence of background colors.
@keyframes col { 0% {background-color:red} 
50% {background-color:green} 
100% {background-color:blue} }

#demo { animation: col 5s infinite }

About

Tic tac toe exercise using typescript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published