Calculator Tools Calculator Tools
Create

Prédicteur de Gain pour le Jeu Wheel TVbet

Jul 23, 2026

About this app

Une application amusante pour prédire avec une probabilité forte si le résultat du jeu Wheel TVbet sera dans l'intervalle [1-18] ou [19-36] basé sur l'heure GMT.

Prédicteur de Gain pour le Jeu Wheel TVbet Prédicteur de Gain - Wheel TVbet Prédire le Résultat

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>Prédicteur de Gain pour le Jeu Wheel TVbet</title>
<meta name="description" content="Une application amusante pour prédire avec une probabilité forte si le résultat du jeu Wheel TVbet sera dans l'intervalle [1-18] ou [19-36] basé sur l'heure GMT." />
<meta name="keywords" content="TVbet, Jeu, Prédiction, Probabilité, GMT, 1-18, 19-36" />

<!-- 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 {
document.addEventListener("DOMContentLoaded", function() {
const resultContainer = document.getElementById('result-container');
const predictButton = document.getElementById('predict-button');

function predictResult() {
const inputTime = document.getElementById('time-input').value;
const date = new Date(`1970-01-01T${inputTime}:00Z`);
const hours = date.getUTCHours();
const minutes = date.getUTCMinutes();
let prediction;

if (hours < 6) {
prediction = '[19-36]'; // Lower hours (00:00 to 05:59)
} else if (hours < 12) {
prediction = (minutes % 2 === 0) ? '[1-18]' : '[19-36]'; // Morning hours (06:00 to 11:59)
} else if (hours < 18) {
prediction = (minutes % 2 === 0) ? '[19-36]' : '[1-18]'; // Afternoon hours (12:00 to 17:59)
} else {
prediction = '[1-18]'; // Evening hours (18:00 to 23:59)
}

displayResult(prediction);
}

function displayResult(prediction) {
resultContainer.innerHTML = `
<div class="alert alert-success animated fadeIn" role="alert">
Résultat prédit: ${prediction}
</div>
`;
}

predictButton.addEventListener('click', predictResult);
});
} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(45deg, #f5f7fa, #c3cfe2);
color: #333;
font-family: 'Arial', sans-serif;
}
#main-container {
margin-top: 50px;
text-align: center;
}
.animated {
animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#predict-button {
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="mb-4">Prédicteur de Gain - Wheel TVbet</h1>
<input type="time" id="time-input" class="form-control" required>
<button id="predict-button" class="btn btn-primary">Prédire le Résultat</button>
<div id="result-container" class="mt-4"></div>
</div>
</body>
</html>