-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLottery.html
More file actions
131 lines (120 loc) · 3.37 KB
/
Lottery.html
File metadata and controls
131 lines (120 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animal Lottery</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #2980B9, #6DD5FA);
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
#lottery-container {
text-align: center;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
background-color: #fff;
}
#card-options {
margin-bottom: 30px;
}
#result {
font-size: 20px;
font-weight: bold;
margin-top: 30px;
color: #27ae60;
}
button {
padding: 15px 30px;
font-size: 18px;
cursor: pointer;
background-color: #27ae60;
color: #fff;
border: none;
border-radius: 8px;
transition: background-color 0.3s;
}
button:hover {
background-color: #219653;
}
</style>
</head>
<body>
<div id="lottery-container">
<h2 style="color: #27ae60;">Animal Lottery</h2>
<div id="card-options">
<label for="card-select" style="font-size: 18px; color: #333;">Select an animal:</label>
<select id="card-select" style="font-size: 16px;">
<option value="lion">Lion</option>
<option value="elephant">Elephant</option>
<option value="giraffe">Giraffe</option>
<option value="tiger">Tiger</option>
<option value="penguin">Penguin</option>
<option value="panda">Panda</option>
<option value="koala">Koala</option>
<option value="zebra">Zebra</option>
<option value="dolphin">Dolphin</option>
<option value="cheetah">Cheetah</option>
<option value="peacock">Peacock</option>
<option value="rhinoceros">Rhinoceros</option>
</select>
</div>
<button onclick="playLottery()">Play Lottery</button>
<div id="result"></div>
<script>
function playLottery() {
const selectedAnimal = document.getElementById('card-select').value;
const randomNumber = Math.floor(Math.random() * 10) + 1; // Generate a random number between 1 and 10
let moneyWon;
switch (selectedAnimal) {
case 'lion':
moneyWon = randomNumber * 15;
break;
case 'elephant':
moneyWon = randomNumber * 8;
break;
case 'giraffe':
moneyWon = randomNumber * 12;
break;
case 'tiger':
moneyWon = randomNumber * 14;
break;
case 'penguin':
moneyWon = randomNumber * 10;
break;
case 'panda':
moneyWon = randomNumber * 18;
break;
case 'koala':
moneyWon = randomNumber * 20;
break;
case 'zebra':
moneyWon = randomNumber * 13;
break;
case 'dolphin':
moneyWon = randomNumber * 16;
break;
case 'cheetah':
moneyWon = randomNumber * 17;
break;
case 'peacock':
moneyWon = randomNumber * 11;
break;
case 'rhinoceros':
moneyWon = randomNumber * 19;
break;
default:
moneyWon = 0;
}
document.getElementById('result').innerText = `Congratulations! You won $${moneyWon}.`;
}
</script>
</div>
</body>
</html>