forked from Dranein/activities-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 1.78 KB
/
index.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
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>红包雨</title>
<style type="text/css">
.wrap {
position: relative;
background: rgba(47, 59, 106, 0.3);
position: absolute;
left: 20px;
right: 20px;
top: 20px;
bottom: 100px;
font-size: 0;
overflow: hidden;
}
#redPacketWarp {
width: 100%;
height: 100%;
font-size: 0;
}
#startGameBtn {
position: absolute;
bottom: 20px;
left: 20px;
text-align: center;
background: red;
height: 50px;
line-height: 50px;
width: 60%;
color: #fff;
font-size: 20px;
border-radius: 30px;
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}
#showTime {
position: absolute;
right: 20px;
bottom: 20px;
font-size: 16px;
color: #999;
}
</style>
</head>
<body>
<div class="wrap">
<div id="redPacketWarp"></div>
</div>
<div id="startGameBtn">startGame</div>
<div id="showTime">得分:0</div>
</body>
<script src="./index.js"></script>
<script type="text/javascript">
window.onload = () => {
let $startGameBtn = document.getElementById('startGameBtn');
let $showTime = document.getElementById('showTime');
let gameRedpacket = new GameRedpacket({
el: 'redPacketWarp',
timeout: 40000,
gameScore: (date) => {
$showTime.innerHTML = `得分:${date}`;
},
gameTimesOut: (date) => {
console.log(date)
alert('时间到啦,您的最后得分为:'+date);
}
});
$startGameBtn.onclick = function(){
gameRedpacket.startGame();
}
}
</script>
</html>