This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2840 from twentyonedot/patch-1
2048 clone with same ui and colours as original
- Loading branch information
Showing
1 changed file
with
6 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,83 +32,77 @@ contributions: | |
name: "Petr Sedláček (Spelos)" | ||
url: "https://github.com/petrspelos" | ||
url: "https://github.com/petrspelos/Discord-2048-Game" | ||
|
||
- title: "2048 with added colors" | ||
author: | ||
name: "Isaac Sanchez" | ||
url: "https://github.com/jelitter/" | ||
url: "https://jelitter.github.io/2048-Coding-Train/index.html" | ||
source: "https://github.com/jelitter/2048-Coding-Train" | ||
|
||
- title: "2048 + toggle to ending + surprise ending" | ||
author: | ||
name: "Matthew S. Braun" | ||
url: "https://github.com/MatthewBraun/" | ||
url: "https://MatthewBraun.github.io/CodingTrainProjects/CC_94_2048/index.html" | ||
source: "https://github.com/MatthewBraun/CodingTrainProjects" | ||
|
||
- title: "2048 with variable grid size, touch support and tests!" | ||
author: | ||
name: "olback" | ||
url: "https://github.com/olback/" | ||
url: "https://olback.github.io/2048/index.html" | ||
source: "https://github.com/olback/2048" | ||
|
||
- title: "2048 using CSS Grid" | ||
author: | ||
name: "Julian Nicholls" | ||
url: "https://github.com/JulianNicholls/" | ||
url: "http://www.reallybigshoe.co.uk/2048/index.html" | ||
source: "https://github.com/JulianNicholls/2048" | ||
|
||
- title: "2048 using p5js with animation and settings" | ||
author: | ||
name: "Chris Cowen" | ||
url: "https://github.com/cacowen/" | ||
url: "http://cacowen.com/2048/" | ||
source: "https://github.com/cacowen/2048" | ||
|
||
- title: "2048 Rapid mode with DOM & CSS Transforms" | ||
author: | ||
name: "Rajat Kanti Nandi" | ||
url: "https://github.com/rajatkantinandi" | ||
url: "https://rajatkantinandi.github.io/2048-rapid-mode/" | ||
source: "https://github.com/rajatkantinandi/2048-rapid-mode" | ||
|
||
- title: "2048 Game using Vue.js" | ||
author: | ||
name: "Rani Al Jeshi" | ||
url: "https://github.com/RaniAlJeshi" | ||
url: "https://ranialjeshi.github.io/Vue2048/" | ||
source: "https://github.com/RaniAlJeshi/Vue2048" | ||
|
||
- title: "Functional Version of 2048 using higher order functions" | ||
author: | ||
name: "vypxl" | ||
url: "https://github.com/vypxl" | ||
url: "https://vypxl.github.io/CC_2048" | ||
source: "https://github.com/vypxl/CC_2048" | ||
|
||
- title: "2048 Puzzle Game Clone(As look like original) Using p5.js" | ||
author: | ||
name: "Mayank Gupta" | ||
url: "https://github.com/mayank2424" | ||
url: "https://mayank2424.github.io/2048-Puzzle-Game/" | ||
source: "https://github.com/mayank2424/2048-Puzzle-Game" | ||
|
||
- title: "2048 Clone using OOP in p5.js" | ||
author: | ||
name: "David Snyder" | ||
url: "https://github.com/GypsyDangerous" | ||
url: "https://editor.p5js.org/D_Snyder/full/zMhaJYxmc" | ||
source: "https://editor.p5js.org/D_Snyder/sketches/zMhaJYxmc" | ||
|
||
- title: "2048 with basic animation" | ||
author: | ||
name: "Mendel Simon" | ||
url: "https://github.com/mendelsimon" | ||
url: "https://editor.p5js.org/[email protected]/sketches/WCcBsMqNC" | ||
source: "https://github.com/mendelsimon/Coding-Train/tree/master/2048" | ||
- title: "2048 clone with same as original using vanilla JS" | ||
author: | ||
name: "Krishna Devaki" | ||
url: "https://github.com/twentyonedot" | ||
url: "https://clone2048.netlify.app/" | ||
source: "https://github.com/twentyonedot/Project2048" | ||
--- | ||
|
||
In this multi-part coding challenge, I attempt to code the sliding puzzle game 2048 in JavaScript using canvas and p5.js. This first part focuses on the game mechanics. |