```
.spin-wheel {
/* styles for the wheel container */
}
.prize-container {
/* styles for the prize container */
}
.prize {
/* styles for each prize */
}
const spinButton = document.getElementById('spin-button');
const prizeContainer = document.getElementById('prize-container');
const prizes = document.querySelectorAll('.prize');
spinButton.addEventListener('click', () => {
// Code to spin the wheel and select a prize
const winningPrize = prizes[Math.floor(Math.random() * prizes.length)];
// Code to display the winning prize
prizeContainer.innerHTML = winningPrize.outerHTML;
});
```
Prize 1
Prize 2
Prize 3
Comments
Post a Comment