Calculator Tools Calculator Tools
Create

FuninMatch 360 - Speed Roulette Number Generator

Aug 12, 2026

About this app

A fun, interactive Speed Roulette app that generates random numbers and features colorful animations and a lively user interface.

FuninMatch 360 - Speed Roulette Number Generator FuninMatch 360 - Speed Roulette - Spin the Wheel!

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>FuninMatch 360 - Speed Roulette Number Generator</title>
<meta name="description" content="A fun, interactive Speed Roulette app that generates random numbers and features colorful animations and a lively user interface.">
<meta name="keywords" content="Speed Roulette, Fun Roulette, Random Number Generator, Casino Game, Fun App">

<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
// App Javascript Goes Here.

const getRandomNumber = () => {
return Math.floor(Math.random() * 36);
};

document.addEventListener("DOMContentLoaded", function() {
const resultDisplay = document.getElementById('result');
const spinButton = document.getElementById('spin-button');

spinButton.addEventListener('click', () => {
const newNumber = getRandomNumber();
resultDisplay.innerHTML = newNumber;
resultDisplay.classList.add('animate');
setTimeout(() => resultDisplay.classList.remove('animate'), 1000);
});

// Add Roulette Link to Open in a New Tab
const rouletteLink = document.createElement('a');
rouletteLink.href = "https://pxoki81qhmq.xoki81qhmq.com/roulette/?table_id=221000&game_id=3&identifier=10437011d8664c0a-801d-43c9-affe-21ad2d9896bd&token=d8664c0a-801d-43c9-affe-21ad2d9896bd&limit_id=&operatorId=10437011";
rouletteLink.target = "_blank";
rouletteLink.innerHTML = '<button class="btn btn-primary mt-3">Go to Live Roulette 🎰</button>';
document.getElementById('main-container').appendChild(rouletteLink);
});

} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(135deg, #f39c12, #e74c3c);
color: #ffffff;
font-family: 'Arial', sans-serif;
}

#main-container {
text-align: center;
margin-top: 100px;
}

h1 {
font-size: 2.5em;
margin-bottom: 20px;
}

.result {
font-size: 5em;
animation: pulse 1s infinite;
}

.btn-spin {
background-color: #2ecc71;
border: none;
padding: 15px 30px;
font-size: 1.5em;
color: white;
border-radius: 10px;
transition: background-color 0.3s;
cursor: pointer;
}

.btn-spin:hover {
background-color: #27ae60;
}

.btn-primary {
background-color: #007bff;
border: none;
padding: 15px 30px;
font-size: 1.5em;
color: white;
border-radius: 10px;
transition: background-color 0.3s;
cursor: pointer;
}

.btn-primary:hover {
background-color: #0056b3;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}

.animate {
animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>FuninMatch 360 - Speed Roulette</h1>
<div id="result" class="result">-</div>
<button id="spin-button" class="btn btn-spin">Spin the Wheel!</button>
</div>
</body>
</html>