Prize Growth Demo
“Illustration: Example of how the prize
pool could grow as entries come in.”
This demonstration shows how a prize pool could grow as entries are purchased.
The amounts displayed below are example illustrations only and do not represent the real prize value of any LuxStarRaffle competition.
£500
Illustration Only – Not the Actual Prize Amount
See the real prize here:
https://luxstarraffle.com/current-raffle/
var prize = 500; var maxPrize = 20000;
function updateCounter(){
prize += Math.floor(Math.random()*50)+10;
if(prize >= maxPrize){ prize = 500; }
document.getElementById("prizeCounter").innerHTML = "£" + prize.toLocaleString();
}
setInterval(updateCounter, 1200);