├── README.md ├── a.png ├── b.png ├── blank.png ├── c.png ├── d.png ├── e.png ├── f.png ├── g.png ├── h.png ├── index.html ├── script.js └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # The Memory Game 2 | 1. One Player game against the computer or two players with higher # of life wins! 3 | 2. You match the cards. 4 | 3. After 10 lifes, you lose! 5 | 6 | 7 | ## Live Game Play 8 | 9 | https://killdakitty.github.io/TheMemoryGame/ 10 | 11 | ## Tech Stack 12 | 1. HTML 13 | 2. CSS 14 | 3. JS 15 | 16 | ## Features: 17 | colorful 18 | kid-friendly 19 | time delay once clicked 20 | 21 | ## Challenge 22 | 23 | once i click the second image, i can still reclick on it even though the clicker was disabled. I played around the with the code and fixed it. 24 | 25 | ## Resources 26 | 27 | Youtube: 28 | https://www.youtube.com/watch?v=DABkhfsBAWw 29 | https://www.youtube.com/watch?v=dqqxkrKhfS4 30 | 31 | website: 32 | https://marina-ferreira.github.io/tutorials/js/memory-game/ 33 | https://dev.to/javascriptacademy/creating-a-memory-card-game-with-html-css-and-javascript-57g1 34 | 35 | alphebet photos: 36 | https://www.teacherspayteachers.com/Browse/Search:free%20alphabet%20%20flash%20cards 37 | -------------------------------------------------------------------------------- /a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/a.png -------------------------------------------------------------------------------- /b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/b.png -------------------------------------------------------------------------------- /blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/blank.png -------------------------------------------------------------------------------- /c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/c.png -------------------------------------------------------------------------------- /d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/d.png -------------------------------------------------------------------------------- /e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/e.png -------------------------------------------------------------------------------- /f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/f.png -------------------------------------------------------------------------------- /g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/g.png -------------------------------------------------------------------------------- /h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Killdakitty/TheMemoryGame/6967ad0f63c2cdfba9dfe78dd47fbf6d5c92d7b3/h.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |