-
Notifications
You must be signed in to change notification settings - Fork 840
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 #5147 from SanskarSinghiit/main
Adds Random Choice Picker game 🕹️
- Loading branch information
Showing
9 changed files
with
187 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Random Choice Picker | ||
|
||
**Description 📃** | ||
Random Choice Picker is a simple yet fun web-based game designed to help you make decisions. Enter your choices into a textarea, and with a click of a button, the game will randomly select one of them. Perfect for picking random items or making decisions in an engaging way! | ||
|
||
**Functionalities 🎮** | ||
- **Input Choices:** Enter your options in a textarea, separated by commas. | ||
- **Shuffle Button:** Press the ENTER key to shuffle the choices and randomly select one. | ||
- **Result Display:** Shows the randomly selected choice. | ||
- **Reset Option:** Clear inputs and results to start fresh. | ||
- **Responsive Design:** Works well on various devices. | ||
- **Customizable Styles:** Personalize the game’s appearance. | ||
|
||
**How to Play? 🕹️** | ||
- **Start:** Open the game in your browser. | ||
- **Input:** Enter your choices in the textarea, separated by commas. | ||
- **Pick:** Press ENTER key to get a random selection. | ||
|
||
**Screenshots 📸** | ||
|
||
![Gameplay Screenshot](https://github.com/SanskarSinghiit/GameZone/blob/main/Games/Random_Choice_Picker/assets/preview.png) | ||
|
||
**Getting Started 🚀** | ||
To get started with the Random Choice Picker, clone the repository and open the `index.html` file in your browser. | ||
|
||
**Installation 🛠️** | ||
No installation required—just open the HTML file in your web browser. | ||
|
||
--- | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Random Choice Picker</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h3>Enter all of the choices divided by a comma (','). <br> Press enter when you're done</h3> | ||
<textarea placeholder="Enter choices here..." id="textarea"></textarea> | ||
|
||
<div id="tags"></div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
const tagsEl = document.getElementById('tags') | ||
const textarea = document.getElementById('textarea') | ||
|
||
textarea.focus() | ||
|
||
textarea.addEventListener('keyup', (e) => { | ||
createTags(e.target.value) | ||
|
||
if(e.key === 'Enter') { | ||
setTimeout(() => { | ||
e.target.value = '' | ||
}, 10) | ||
|
||
randomSelect() | ||
} | ||
}) | ||
|
||
function createTags(input) { | ||
const tags = input.split(',').filter(tag => tag.trim() !== '').map(tag => tag.trim()) | ||
|
||
tagsEl.innerHTML = '' | ||
|
||
tags.forEach(tag => { | ||
const tagEl = document.createElement('span') | ||
tagEl.classList.add('tag') | ||
tagEl.innerText = tag | ||
tagsEl.appendChild(tagEl) | ||
}) | ||
} | ||
|
||
function randomSelect() { | ||
const times = 30 | ||
|
||
const interval = setInterval(() => { | ||
const randomTag = pickRandomTag() | ||
|
||
if (randomTag !== undefined) { | ||
highlightTag(randomTag) | ||
|
||
setTimeout(() => { | ||
unHighlightTag(randomTag) | ||
}, 100) | ||
} | ||
}, 100); | ||
|
||
setTimeout(() => { | ||
clearInterval(interval) | ||
|
||
setTimeout(() => { | ||
const randomTag = pickRandomTag() | ||
|
||
highlightTag(randomTag) | ||
}, 100) | ||
|
||
}, times * 100) | ||
} | ||
|
||
function pickRandomTag() { | ||
const tags = document.querySelectorAll('.tag') | ||
return tags[Math.floor(Math.random() * tags.length)] | ||
} | ||
|
||
function highlightTag(tag) { | ||
tag.classList.add('highlight') | ||
} | ||
|
||
function unHighlightTag(tag) { | ||
tag.classList.remove('highlight') | ||
} |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
background-color: #2b88f0; | ||
font-family: 'Muli', sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
overflow: hidden; | ||
margin: 0; | ||
} | ||
|
||
h3 { | ||
color: #fff; | ||
margin: 10px 0 20px; | ||
text-align: center; | ||
} | ||
|
||
.container { | ||
width: 500px; | ||
} | ||
|
||
textarea { | ||
border: none; | ||
display: block; | ||
width: 100%; | ||
height: 100px; | ||
font-family: inherit; | ||
padding: 10px; | ||
margin: 0 0 20px; | ||
font-size: 16px; | ||
} | ||
|
||
textarea:focus { | ||
outline: none; | ||
} | ||
|
||
.tag { | ||
background-color: #f0932b; | ||
color: #fff; | ||
border-radius: 50px; | ||
padding: 10px 20px; | ||
margin: 0 5px 10px 0; | ||
font-size: 14px; | ||
display: inline-block; | ||
} | ||
|
||
.tag.highlight { | ||
background-color: #273c75; | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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