-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlottery.html
71 lines (71 loc) · 2 KB
/
lottery.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
.lottery {
width: 800px;
margin: 0 auto;
height: 500px;
background-color: #5fafea;
display: flex;
flex-wrap: wrap;
position: relative;
}
.lottery .lottery-block {
width: 25%;
height: 25%;
background-color: rgba(255, 0, 0, 0.38);
border: 1px solid silver;
box-sizing: border-box;
}
.lottery .lottery-block.active {
background-color: red;
}
.lottery .center-btn {
position: absolute;
width: 50%;
height: 50%;
background-color: rgba(255, 255, 0, 0.58);
top: 25%;
left: 25%;
display: flex;
justify-content: center;
align-items: center;
}
.lottery .center-btn button {
padding: 20px 50px;
}
</style>
<body>
<div class="lottery">
<div class="lottery-block lottery-block1"></div>
<div class="lottery-block lottery-block2"></div>
<div class="lottery-block lottery-block3"></div>
<div class="lottery-block lottery-block4"></div>
<div class="lottery-block lottery-block12"></div>
<div class="lottery-block"></div>
<div class="lottery-block"></div>
<div class="lottery-block lottery-block5"></div>
<div class="lottery-block lottery-block11"></div>
<div class="lottery-block"></div>
<div class="lottery-block"></div>
<div class="lottery-block lottery-block6"></div>
<div class="lottery-block lottery-block10"></div>
<div class="lottery-block lottery-block9"></div>
<div class="lottery-block lottery-block8"></div>
<div class="lottery-block lottery-block7"></div>
<div class="center-btn">
<button class="btn">抽奖</button>
</div>
</div>
<script type="application/javascript" src="jquery.js"></script>
<script type="application/javascript" src="lottery.js"></script>
</body>
</html>