https://github.com/basklash/whack-a-button-2.0
A new version of the whack a button edition
https://github.com/basklash/whack-a-button-2.0
button-animation button-animations button-game gaming-website
Last synced: 8 months ago
JSON representation
A new version of the whack a button edition
- Host: GitHub
- URL: https://github.com/basklash/whack-a-button-2.0
- Owner: BaskLash
- Created: 2023-02-03T13:58:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T15:16:07.000Z (about 3 years ago)
- Last Synced: 2025-08-10T06:09:55.595Z (10 months ago)
- Topics: button-animation, button-animations, button-game, gaming-website
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Whack a Button 2.0
A game in which you need to search for the yellow circle and try to click on it, in order to win.
This game is a continued version of the game "Whack-a-Button".
## Setup
To use this project, you'll need to create an account at [GIPHY Developers](https://developers.giphy.com/), as the project pulls the gifs from their API.
After creating an account, navigate to the [GIPHY Developers Dashboard](https://developers.giphy.com/dashboard/). If you haven't created an app yet, go to the top navigation and click on Create an App located between Blog and your profile name.
When creating the app, make sure to select API, give your app a name and a small description of what you will use it for. Check the checkbox to confirm that you have read and agree to the GIPHY API Terms, and then click on Create App.
Once your app is created, you'll see an API Key. Copy it, go to the project, and create a new file called apikey.js. In that file, write the following code and paste your API key:
```javascript
const API_KEY = "YOUR_API_KEY";
```
Finally, save the file, and you're ready to go!