Skip to content

Instantly share code, notes, and snippets.

@chrisgannon
Last active March 29, 2023 06:40
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save chrisgannon/1afba5c07faeb9947a2e84d987200e3e to your computer and use it in GitHub Desktop.
Save chrisgannon/1afba5c07faeb9947a2e84d987200e3e to your computer and use it in GitHub Desktop.
Documentation for Spin2Win Wheel, a responsive, flexible, customisable, resolution independent spin wheel game whose outcomes you control.
Release notes for updates can be found in the comments
FAQs can be found here here

Documentation for Spin2Win Wheel by Chris Gannon

Built using Scalable Vector Graphics Spin2Win Wheel is a responsive, flexible, customisable, resolution independent spin wheel game whose outcomes you control.

Spin results, prizes, win/lose, number of spins, custom data and more can be controlled using JSON data. You can set the winning probabilty for each segment and customise the look and feel of Spin2Win Wheel to bring it in line with your brand or color scheme - it even has an anti-cheat mechanism to prevent players placing the wheel on a chosen segment.

You can purchase Spin2Win Wheel by Chris Gannon from CodeCanyon here

Features

  • Probability
  • API for game progress, tracking and results
  • Spin destinations can be set to ensure a specific outcome
  • Anti-cheat mechanism
  • Supports infinite random spins
  • Smooth intuitive spin/throw physics
  • Customizable colors with unique or alternating pattern
  • Customizable size, position and style of the graphics
  • Responsive and scalable
  • Customizable number of wheel segments
  • Use text or images (or both!) as the prize on each segment
  • Supports animated GIFs as segment prize
  • Touch and mouse input
  • Supports desktop and mobile
  • Resolution independent SVG graphics means it Spin2Win Wheel looks beautiful on high density displays
  • Supports tick sound on/off while spinning
  • Supports shadows to add depth
  • Info popups can be styled via CSS
  • Supports emojis
  • Spin direction

API

Events

Spin2WinWheel.onResult() - Returns Object. This can be set on the instance or passed in the init object. Returns the following:

  • target - Spin2WinWheel - instance of the wheel
  • spinCount - Integer - the current spin count for that result
  • msg - String - the result text (this is resultText in the JSON)
  • type - String - will return 'result'
  • win - Boolean - will return true or false (based on the resultText in the JSON)
  • gameId - String - the gameId (this is set in the JSON)
  • userData - Object - an optional object that can contain your own specific data for each segment (this is set in the JSON)

Spin2WinWheel.onError() - Returns Object. This can be set on the instance or passed in the init object. Returns the following:

  • target - Spin2WinWheel - instance of the wheel
  • spinCount - Integer - the current spin count for that error. Remember this is zero-based.
  • msg - String - the error text (this is invalidSpinText in the JSON)
  • type - String - will return 'error'
  • win - String - will return 'null'
  • gameId - String - the gameId (this is set in the JSON)

Spin2WinWheel.onGameEnd() - Returns Object containing the target (instance of Spin2WinWheel), gameId and an array of result objects (object will be either result or error objects as above). This can be set on the instance or passed in the init object. Returns the following:

  • target - Spin2WinWheel - instance of the wheel
  • results - Object - an array of result objects.
  • gameId - String - the gameId (this is set in the JSON)

Static Functions

Spin2WinWheel.reset() - Static function - resets the wheel.

Calls

Spin2WinWheel.init(vars:Object) - Function - initialises the wheel instance. See example under Usage. Accepts the following:

  • onResult - pass in your own Result function. Called after every spin.
  • onGameEnd - pass in your own Game End function. Called at the end of the game (unless there is no limit on number of spins).
  • onError - pass in your own Error function.
  • spinTrigger - pass in your own HTML button or trigger element to trigger the spin. The variable clickToSpin must be true in the JSON.

Spin2WinWheel.restart() - Function - call this to reset the wheel based on the current JSON data

Spin2WinWheel.getGameProgress() - Returns array of result objects - call this to view the results of the current game during play.

JSON Properties

An example of a JSON file can be found here

colorArray - The colors used for each segment. You can set as many or as few as you like. If there are fewer colors than entries in the segmentValuesArray then the colors will alternate. This is a useful feature if you wish to style the wheel with your brand palette. For example, if your brand has red, yellow and orange then just include those colors and Spin2Win Wheel will alternate them no matter how many segments there are. To alternate between two colors just include two.

segmentValuesArray - an array of objects containing the following:

  • type - String - the type of value on the segment - can be 'image' or 'string'. You have the flexibility to use text or an image (SVG, PNG, JPG, GIF) - you can even use an animated GIF. Its dimensions are determined by wheelImageSize. If the image you use is not square and the wheelImageSize is, say, 54, the image will be scaled maintaining its aspect ratio to a width of 54px. SVG 1.1 does not natively support word wrapping, so you can add a ^ where you want a new line. E.g. You won^a holiday!
  • value - String - can be an image URL (SVG image is recommended for resolution independence) or a value like '$450' or 'Holiday'.
  • win - Boolean - describes whether this segment is a winner or loser. Useful for both frontend display and backend DB
  • resultText - String - the text displayed when the wheel lands on the segment
  • probability - Number - any integer E.g. "probability"=20. All the probability values will be added together. Their individual value will be a percentage of that total value. Similarly "probability"=0 means the wheel will never land on this segment. Unlike previous versions these values no longer need to add up to 100.

Notes on probability: If you want each segment to have an equal probably of winning then delete the probability properties from each segment because equal probability is random. Also you can only use probably when clickToSpin is true - it is not applied when throwing the wheel with a gesture.

Also note that any values set in spinDestinationArray will be ignored if you are using probability. To set the number of spins use numSpins (an integer for the number of spins or -1 for infinite spins).

  • userData - Object - an optional object that can contain custom data for retrieval in the onResult event

svgWidth - Integer (px) - SVG viewBox width

svgHeight - Integer (px) - SVG viewBox height

wheelStrokeColor - String - HEX, RGB or RGBA value for the wheel's main outline color

wheelStrokeWidth - Integer (px) - wdith of the wheel outline

wheelSize - Integer (px) for the diameter of the wheel

wheelTextOffsetY - Integer (px) - how far in the segment text should be

wheelTextSize - Value (em, px, integer) for the font size (if you're using text for the segment label)

wheelImageOffsetY - Integer (px) - how far in the segment image should be

wheelImageSize - Integer (px) - the width of the segment image. Images will be constrained by their aspect ratio

centerCircleSize - Integer (px) - the diameter of the central circle

centerCircleStrokeColor - Integer (px) - central circle stroke color

centerCircleStrokeWidth - Integer (px) - central circle stroke width

centerCircleFillColor - Integer (px) - central circle fill color

segmentStrokeColor - String - HEX, RGB or RGBA value for the segment's outline

segmentStrokeWidth - Integer (px) - width of the segment outline

centerX - Integer (px) - this is usually half the svgWidth value

centerY - Integer (px) - this is usually half the svgHeight value

hasShadows - Boolean - applies a shadow to the main and outer wheel and also the segment values (text or image). Using shadows can degrade performance on some mobile devices so a test is advisable.

numSpins - Integer - can be any number of random spins - use -1 for infinite spins. This value is ignored if spinDestinationArray contains values. However if you are using probability then numSpins is used and spinDestinationArray is ignored.

spinDestinationArray - Array - set which segments each spin will land on. The number of entries will be the number of spins allowed. If this is not defined then numSpins is used as the number of allowed spins. Disallowed destination numbers are 0 and any number greater than the length of segmentValuesArray.

minSpinDuration - Integer - although this sets the minimum amount of time the wheel will spin for it is a guide based on the velocity of the spin. This value is ignored if spinDestinationArray contains values (due to the maths required to ensure the wheel lands on the destination segment). Please note this only applies to flick gestures - it does not affect the wheel when a spin is triggered with a button click. Also please ensure all probability settings are removed for gestures to work.

gameOverText - String - displayed when the game is over

invalidSpinText - String - displayed if the user didn't spin correctly (or tried to cheat by placing the wheel on a segment)

introText - String - text show at the start of a game

hasSound - Boolean - if false no tick/peg sound will play while the wheel is spinning.

gameId - String - an identifier for the game instance.

clickToSpin - Boolean - if true clicking the wheel will perform the spin unless you pass in your own button in the init object. If this is set to false but you have passed in your own button reference then this will ignored and assumed to be true. You must set this to true if you want to use probabilty. If set to false, ensure all probability settings are removed for gestures to work.

spinDirection - String - can be either cw or ccw (clockwise or counter clockwise)

disabledText - String - the text displayed in the toast popup when numSpins:0

Notes

There are several ways to use Spin2Win Wheel regarding outcome control. The list below explains a bit more about order of importance

Probability overrides spinDestinationArray. So if you have set probability properties for each segment, spinDestinationArray is ignored and the numer of spins is taken from numSpins and NOT the number of entries in spinDestinationArray.

spinDestinationArray overrides numSpins. If you have set numSpins to be 7 but you have 4 entries in spinDestinationArray AND probability is not used then the number of spins is 4.

For the segment label you have the flexibility to use text or image (SVG, PNG, JPG, GIF you can even use an animated GIF). Its size is determined by wheelImageSize. If the image you use is not square and the wheelImageSize is, say, 54, the image will be scaled maintaining its aspect ratio to a width of 54px;

The default values in the JSON mean the wheel is already at an optimum size to fit most devices and screen sizes. If you do need to change them, you will need to experiment with the various size settings for the images, wheel and text.

The size and color of the text on a wheel segment is set in the JSON but can be overridden in the CSS (class is .wheelText). The font for the wheel text can also be edited via CSS.

The information popup and accompanying text (toast popup and p tag) can be styled in the CSS directly (font family, size, color etc). I purposely separated these from the wheel data because they are HTML elements and the wheel elements are pure SVG.

You can edit the peg graphic by locating the path with id peg in the HTML (inside the SVG tag) and changing its fill property.

spinCount is zero-based which means the first spin is spin=0 and the fifth spin is spinCount=4. This is important when viewing your game results using Spin2WinWheel.onResult() or if you want to check on game progress during play (via Spin2WinWheel.getGameProgress()

JavaScript Libraries

Spin2Win Wheel is powered the GreenSock Animation Platform (GSAP). The following libraries are used:

  • TweenMax (CDN)
  • Draggable (CDN)
  • ThrowPropsPlugin (Local version only /js/ThrowPropsPlugin.min.js)
  • TextPlugin (CDN)

Fonts

Currently Spin2Win Wheel loads Fjalla One from Google Fonts and this is applied in the CSS.

<link href='https://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>

Usage

//Usage
//Make sure you have loaded the above libraries and don't forget Spin2WinWheel.min.js
//Also make sure your HTML page contains the SVG tag and other HTML elements included in your download.

//load your JSON (you could jQuery if you prefer)
function loadJSON(callback) {

  var xobj = new XMLHttpRequest();
  xobj.overrideMimeType("application/json");
  xobj.open('GET', './wheel_data.json', true); 
  xobj.onreadystatechange = function() {
    if (xobj.readyState == 4 && xobj.status == "200") {
      //Call the anonymous function (callback) passing in the response
      callback(xobj.responseText);
    }
  };
  xobj.send(null);
}

//your own function to capture the spin results
function myResult(e) {
  //e is the result object
    console.log('Spin Count: ' + e.spinCount + ' - ' + 'Win: ' + e.win + ' - ' + 'Message: ' +  e.msg);
    
    //you can test which spin it is
  if(e.spinCount == 3){
    //and show the game progress when the spinCount is 3
    console.log(e.target.getGameProgress());
    //restart it if you like
    //e.target.restart();
  }  

    // if you have defined a userData object...
    if(e.userData){
      
      console.log('User defined score: ' + e.userData.score);

    }  

}

//your own function to capture any errors
function myError(e) {
  //e is error object
  console.log('Spin Count: ' + e.spinCount + ' - ' + 'Message: ' +  e.msg);

}

function myGameEnd(e) {
  //e is gameResultsArray
  console.log(e);
  //reset the wheel with static function call
  Spin2WinWheel.reset();
}

function init() {
  loadJSON(function(response) {
    // Parse JSON string to an object
    var jsonData = JSON.parse(response);
    //if you want to spin it using your own button, then create a reference and pass it in as spinTrigger
    //var mySpinBtn = document.querySelector('.spinBtn');
    //create a new instance of Spin2Win Wheel and pass in the vars object
    var myWheel = new Spin2WinWheel();
    
    //WITH your own button
    //myWheel.init({data:jsonData, onResult:myResult, onGameEnd:myGameEnd, onError:myError, spinTrigger:mySpinBtn});
    
    //WITHOUT your own button
    myWheel.init({data:jsonData, onResult:myResult, onGameEnd:myGameEnd, onError:myError});
  });
}


//And finally call it
init();

Installation

  • Extract the ZIP to a folder on a web server. This folder will be your root. If you do not run this on a web server the JSON will not load and the Spin2Win Wheel will not work.
  • Ensure your JSON is sitting in the same domain - loading across domains is not allowed due to browser security.
  • Ensure the SVG tag is in the HTML page.
You can purchase Spin2Win Wheel by Chris Gannon from CodeCanyon here
FAQs can be found here here

Features Graphic

Spin2Win Wheel Features

@chrisgannon
Copy link
Author

chrisgannon commented Jul 12, 2016

Spin2Win Wheel - Release Notes - July 11, 2016

Bug fix

  1. Fixed a bug where a call to Spin2WinWheel.restart(); caused an error when clickToSpin:true in the JSON.

Additional functionality

  1. The SVG 1.1 specification does not support word wrap/multi-line text. If you need multi-line text on a segment's text label you can now add the ^ symbol where you want the new line (in the JSON). E.g. 'HOLIDAY^FOR TWO' will force a new line after HOLIDAY.

image

@chrisgannon
Copy link
Author

chrisgannon commented Oct 13, 2016

Spin2Win Wheel - Release Notes - October 13, 2016

Additional PHP functionality

I have created PHP code that returns the correctly formatted JSON.

  1. Create a PHP file called 'wheel_data.php' and paste this in.
  2. Save the PHP file in the same directory as your existing JSON file.
  3. Open index.js and find the loadJSON function.
  4. Now change the filename from wheel_data.json to wheel_data.php. It should look like this
    image
  5. Ensure you are running Spin2Win Wheel on a server that supports PHP!

PHP code to copy/paste

<?php

header('Content-type: application/json');
$data = array(
"colorArray" => array("#364C62", "#F1C40F", "#E67E22", "#E74C3C", "#ECF0F1", "#95A5A6", "#16A085", "#27AE60", "#2980B9", "#8E44AD", "#2C3E50", "#F39C12", "#D35400", "#C0392B", "#BDC3C7","#1ABC9C", "#2ECC71", "#E87AC2", "#3498DB", "#9B59B6", "#7F8C8D"),

"segmentValuesArray" => array( 

	array(
    "probability" => 20,
    "type" => "string",
    "value" => "HOLIDAY^FOR TWO",
    "win" => false,
    "resultText" => "YOU WON A HOLIDAY!",
    "userData" => array("score" => 10)
),
	array(
    "probability" => 25,
    "type" => "image",
    "value" => "media/tip_star.svg",
    "win" => true,
    "resultText" => "A STAR!",
    "userData" => array("score" => 20)
)
,
	array(
    "probability" => 120,
    "type" => "image",
    "value" => "media/tip_sqr.svg",
    "win" => true,
    "resultText" => "A SQUARE!",
    "userData" => array("score" => 3000)
)
,
	array(
    "probability" => 20,
    "type" => "image",
    "value" => "media/tip_oct.svg",
    "win" => false,
    "resultText" => "An OCTOGON!",
    "userData" => array("score" => 40)
)
,
	array(
    "probability" => 20,
    "type" => "image",
    "value" => "media/tip_hex.svg",
    "win" => true,
    "resultText" => "A HEXAGON!",
    "userData" => array("score" => 50)
)
,
	array(
    "probability" => 14,
    "type" => "image",
    "value" => "media/tip_triangle.svg",
    "win" => true,
    "resultText" => "A TRIANGLE!",
    "userData" => array("score" => 60)
)
),
"svgWidth" => 1024,
"svgHeight" => 768,
"wheelStrokeColor" => "#D0BD0C",
"wheelStrokeWidth" => 18,
"wheelSize" => 700,
"wheelTextOffsetY" => 80,
"wheelTextColor" => "#EDEDED",
"wheelTextSize" => "2.3em",
"wheelImageOffsetY" => 40,
"wheelImageSize" => 50,
"centerCircleSize" => 360,
"centerCircleStrokeColor" => "#F1DC15",
"centerCircleStrokeWidth" => 12,
"centerCircleFillColor" => "#EDEDED",
"segmentStrokeColor" => "#E2E2E2",
"segmentStrokeWidth" => 4,
"centerX" => 512,
"centerY" => 384,  
"hasShadows" => false,
"numSpins" => 2 ,
"spinDestinationArray" => array(),
"minSpinDuration" => 6,
"gameOverText" => "THANK YOU FOR PLAYING SPIN2WIN WHEEL. COME AND PLAY AGAIN SOON!",
"invalidSpinText" =>"INVALID SPIN. PLEASE SPIN AGAIN.",
"introText" => "YOU HAVE TO<br>SPIN IT <span style='color=>#F282A9;'>2</span> WIN IT!",
"hasSound" => true,
"gameId" => "9a0232ec06bc431114e2a7f3aea03bbe2164f1aa",
"clickToSpin" => true

);

echo json_encode( $data);
?>

@chrisgannon
Copy link
Author

chrisgannon commented Jan 14, 2017

Spin2Win Wheel - Release Notes - January 14, 2017

You can no longer spin the wheel if numSpins = 0.

Wheel is now anchored to the top of the window on resize, avoiding the annoying gap it once had.

@chrisgannon
Copy link
Author

Spin2Win Wheel - Release Notes - March 9, 2017

You can now add a userData object to each segment's data in the JSON.

E.g.

{"type": "image", "value": "https://s3-us-west-2.amazonaws.com/s.cdpn.io/35984/tip_star.svg", "win": false, "resultText": "A STAR LOSES :&#40;", "userData": {"score":10}},
  {"type": "image", "value": "https://s3-us-west-2.amazonaws.com/s.cdpn.io/35984/tip_sqr.svg", "win": false, "resultText": "NOBODY LIKES A SQUARE :&#40;", "userData": {"score":30}},

You use the onResult event to retrieve that data like this:

function myResult(e) {
  //e is the result object
    console.log('Spin Count: ' + e.spinCount + ' - ' + 'Win: ' + e.win + ' - ' + 'Message: ' +  e.msg);
    // if you have defined a userData object...
    if(e.userData){
    //make sure you have set the property you are trying to retrieve! 
    //Here we have set a property called ```score``` but it can be anything as long as it's in the userData object in the JSON      
      console.log('User defined score: ' + e.userData.score);
    }

}

@chrisgannon
Copy link
Author

Spin2Win Wheel - Release Notes - April 6, 2017

Probability has arrived!

Check out the examples JSON file here

When using the probability property the combined values must add up to 100. Note that you can have a segment that has a 0% chance of winning meaning the wheel will never land on it.

Also note that probability overrides spinDestinationArray meaning that even if you have segments set in spinDestinationArray they will be ignored and the number of spins will be taken from the numSpins property.

@chrisgannon
Copy link
Author

Spin2Win Wheel - Bug Fix - June, 2017

Fixed an issue where, in certain conditions, the onResult, onGameEnd and onTrigger events would error if it wasn't assigned to custom a function.

@chrisgannon
Copy link
Author

Spin2Win Wheel - Bug Fix and Updates - July, 2017

Fixed a CSS issue where the wheel did not scale in FireFox.
Fixed a CSS issue where the button would not center properly in IE.

Updated the probability functionality - values no longer need to add up to 100. Value must still be integers and their probability will be a percent of the total value (i.e. of all the values added together).

@chrisgannon
Copy link
Author

chrisgannon commented Apr 23, 2019

Spin2Win Wheel - Bug Fix and Updates - July, 2017

PROBABILITY VALUES NO LONGER NEED TO ADD UP TO 100

This change makes entering values generated from other sources much easier to manage Fixes: Fixed some CSS bugs with scaling in FireFox and button centering in IE.

@chrisgannon
Copy link
Author

chrisgannon commented Apr 23, 2019

Spin2Win Wheel - Bug Fix and Updates - Jan, 2018

Added new static function Spin2WinWheel.reset() that resets the wheel.
Added new property "spinDirection" in the JSON. Accepts "cw" (clockwise) and "ccw" (counter-clockwise).

@chrisgannon
Copy link
Author

Spin2Win Wheel - Bug Fix and Updates - Jan, 2019

Fixed some bugs. Removed hard-coded CSS via JavaScript (for the popups).

@chrisgannon
Copy link
Author

@boldrack

How can one disable the gameOverText - i'll like to implement my own modal . .to show to users .

Now the modal is showing .. called from the game end call back function but the game over text is still showing beneath it .

Please ask questions on the CodeCanyon forum. Thanks!

@chrisgannon
Copy link
Author

chrisgannon commented Jan 29, 2021

Spin2Win Wheel - Bug Fix and Updates - Jan, 2021

Fixed a (very rare) rotation bug. Simplified the CSS to allow greater flexibility when adding the wheel to containers.

@chrisgannon
Copy link
Author

chrisgannon commented Feb 26, 2021

Spin2Win Wheel - Bug Fix and Updates - Feb, 2021

  • Now numSpins:0 will trigger a custom message (e.g. 'you don't have any spins left') and it disables the wheel (and trigger button).

  • Added "disabledText":"Your custom disabled wheel message" entry in the JSON to allow a custom message.

@chrisgannon
Copy link
Author

Spin2Win Wheel - Bug Fix - Nov, 2021

  • Fixed bug in PHP

Sample:

<?php

header('Content-type: application/json');
$data = array(
"colorArray" => array("#364C62", "#F1C40F", "#E67E22", "#E74C3C", "#ECF0F1", "#95A5A6", "#16A085", "#27AE60", "#2980B9", "#8E44AD", "#2C3E50", "#F39C12", "#D35400", "#C0392B", "#BDC3C7","#1ABC9C", "#2ECC71", "#E87AC2", "#3498DB", "#9B59B6", "#7F8C8D"),

"segmentValuesArray" => array( 

	array(
    "probability" => 20,
    "type" => "string",
    "value" => "HOLIDAY^FOR TWO",
    "win" => false,
    "resultText" => "YOU WON A HOLIDAY!",
    "userData" => array("score" => 10)
),
	array(
    "probability" => 25,
    "type" => "image",
    "value" => "media/tip_star.svg",
    "win" => true,
    "resultText" => "A STAR!",
    "userData" => array("score" => 20)
)
,
	array(
    "probability" => 120,
    "type" => "image",
    "value" => "media/tip_sqr.svg",
    "win" => true,
    "resultText" => "A SQUARE!",
    "userData" => array("score" => 3000)
)
,
	array(
    "probability" => 20,
    "type" => "image",
    "value" => "media/tip_oct.svg",
    "win" => false,
    "resultText" => "An OCTOGON!",
    "userData" => array("score" => 40)
)
,
	array(
    "probability" => 20,
    "type" => "image",
    "value" => "media/tip_hex.svg",
    "win" => true,
    "resultText" => "A HEXAGON!",
    "userData" => array("score" => 50)
)
,
	array(
    "probability" => 14,
    "type" => "image",
    "value" => "media/tip_triangle.svg",
    "win" => true,
    "resultText" => "A TRIANGLE!",
    "userData" => array("score" => 60)
)
),
"svgWidth" => 1024,
"svgHeight" => 768,
"wheelStrokeColor" => "#D0BD0C",
"wheelStrokeWidth" => 18,
"wheelSize" => 700,
"wheelTextOffsetY" => 80,
"wheelTextColor" => "#EDEDED",
"wheelTextSize" => "2.3em",
"wheelImageOffsetY" => 40,
"wheelImageSize" => 50,
"centerCircleSize" => 360,
"centerCircleStrokeColor" => "#F1DC15",
"centerCircleStrokeWidth" => 12,
"centerCircleFillColor" => "#EDEDED",
"centerCircleImageUrl" => "media/logo.png",
"centerCircleImageWidth" => 400,
"centerCircleImageHeight" => 400,  
"segmentStrokeColor" => "#E2E2E2",
"segmentStrokeWidth" => 4,
"centerX" => 512,
"centerY" => 384,  
"hasShadows" => false,
"numSpins" => -1,
"spinDestinationArray" => array(),
"minSpinDuration" => 6,
"gameOverText" => "THANK YOU FOR PLAYING SPIN2WIN WHEEL. COME AND PLAY AGAIN SOON!",
"invalidSpinText" =>"INVALID SPIN. PLEASE SPIN AGAIN.",
"introText" => "YOU HAVE TO<br>SPIN IT <span style='color=>#F282A9;'>2</span> WIN IT!",
"hasSound" => true,
"gameId" => "9a0232ec06bc431114e2a7f3aea03bbe2164f1aa",
"clickToSpin" => true,
"spinDirection" => "ccw",
"disabledText" => "You have no more spins today"

);

echo json_encode( $data);
?>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment