Last active
January 13, 2021 15:09
-
-
Save pmacMaps/0452de50548472690dc90beda73f27a0 to your computer and use it in GitHub Desktop.
Game Spinner for Wild Kratts Race Around the World Board Game
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Spinner for Wild Kratts Race Around the World Game</title> | |
<meta name="description" content="A simple spinner app for the Wild Kratts Race Around the World board game."> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta property="og:title" content=""> | |
<meta property="og:type" content=""> | |
<meta property="og:url" content=""> | |
<meta property="og:image" content=""> | |
<style> | |
html { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
*, *:before, *:after { | |
-webkit-box-sizing: inherit; | |
-moz-box-sizing: inherit; | |
box-sizing: inherit; | |
margin: 0; | |
padding: 0; | |
} | |
html, | |
body, | |
#main { | |
height: 100%; | |
width: 100%; | |
} | |
#main { | |
max-width: 1040px; | |
margin: 0 auto; | |
text-align: center; | |
} | |
#result { | |
border: 1px solid #000; | |
background-color: #000; | |
height: 100px; | |
width: 80vw; | |
margin: 1.5em auto; | |
padding: 0.5em; | |
font-size: 2em; | |
font-weight: bold; | |
line-height: 60px; | |
transition: background-color 0.15s ease-in-out; | |
} | |
h1 { | |
padding-top: 0.5em; | |
font-size: 1.75em; | |
} | |
button { | |
font-size: 1.25em; | |
padding: 1em; | |
} | |
@media screen and (min-width: 769px) { | |
#result { | |
width: 15vw; | |
} | |
button { | |
padding: 0.5em; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<section id="main"> | |
<h1>Game Spinner</h1> | |
<div id="result"></div> | |
<button id="selector">Press to Spin</button> | |
</section> | |
<script> | |
// function to get random value from an array | |
const getRandomValue = (list, uiElement) => { | |
// get random value from array | |
const value = list[Math.floor(Math.random() * list.length)]; | |
// display random value on page | |
uiElement.innerHTML = value; | |
} | |
// function to change css propery | |
const setBackgroundColor = (element, color) => { | |
element.style.backgroundColor = color; | |
} | |
// array of possible values for spinner | |
const spinnerValues = ['1', '2', '3', '4', '5', '6', 'SWIPE']; | |
// DOM element to display results in | |
const displayElement = document.getElementById('result'); | |
// button to click to get spinner value | |
const spinnerButton = document.getElementById('selector'); | |
// add 'click' event listener to button | |
spinnerButton.addEventListener('click', function() { | |
// hide result | |
setBackgroundColor(displayElement, '#000'); | |
// update value | |
setTimeout(function() {getRandomValue(spinnerValues, displayElement)}, 400); | |
// show result | |
setTimeout(function() {setBackgroundColor(displayElement, '#fff')}, 700); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The physical spinner that came with this game sucks. It is sticky, and tends to go to "SWIPE" or a couple other values. I think it was engineered or manufactured poorly. This simple app provides a better way to spin during each turn.