-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path随机点名.html
238 lines (222 loc) · 4.64 KB
/
随机点名.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
html,body,div,span,ul,li,h3,h4,p {
margin: 0;
padding: 0;
}
.clearFix:after {
display: block;
clear: both;
content:"";
visibility: hidden;
height: 0;
}
.container {
width: 600px;
margin: 0 auto;
}
ul {
width: 600px;
height: 150px;
list-style: none;
}
ul li {
float: left;
width: 80px;
line-height: 30px;
text-align: center;
background-color: #ccc;
color: #000;
margin-right: 10px;
margin-top: 10px;
}
.item {
background-color: #c33;
color: #fff;
}
.content {
width: 600px;
height: 440px;
padding-left: 100px;
}
.content p {
font-weight: 700;
}
.content img {
display: block;
width: 300px;
height: 300px;
}
.content h3 {
width: 200px;
line-height: 30px;
background-color: #c33;
color: #fff;
cursor: pointer;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container clearFix">
<ul>
<li >张三</li>
<li >李四</li>
<li >王五</li>
<li >赵六</li>
<li >钱七</li>
<li >孙八</li>
<li >张三</li>
<li >李四</li>
<li >王五</li>
<li >赵六</li>
<li >钱七</li>
<li >孙八</li>
<li >张三</li>
<li >李四</li>
<li >王五</li>
<li >赵六</li>
<li >钱七</li>
<li >孙八</li>
</ul>
<div class="content">
<p class="uname">姓名: </p>
<span>头像:</span><img src="" class="headImg">
<h4 class="motto">座右铭:</h4>
<h3 class="btn">点名开始</h3>
</div>
</div>
<script src="js/$.js"></script>
<script>
"use strict";
window.onload = function(){
var uname = $('.uname')[0],
headImag = $('.headImg')[0],
motto = $('.motto')[0],
btn = $('.btn')[0],
lis = $('li'),
timer = null;
var infor = [
{
name:'张三',
headImg: 'imgs/u2.jpg',
motto:'生活没有如果1'
},
{
name:'李四',
headImg: 'imgs/u3.jpg',
motto:'生活没有如果2'
},
{
name:'王五',
headImg: 'imgs/u4.jpg',
motto:'生活没有如果3'
},
{
name:'赵六',
headImg: 'imgs/u5.jpg',
motto:'生活没有如果4'
},
{
name:'钱七',
headImg: 'imgs/u6.jpg',
motto:'生活没有如果5'
},
{
name:'孙八',
headImg: 'imgs/u7.jpg',
motto:'生活没有如果6'
},
{
name:'张三',
headImg: 'imgs/u2.jpg',
motto:'生活没有如果7'
},
{
name:'李四',
headImg: 'imgs/u3.jpg',
motto:'生活没有如果8'
},
{
name:'王五',
headImg: 'imgs/u4.jpg',
motto:'生活没有如果9'
},
{
name:'赵六',
headImg: 'imgs/u5.jpg',
motto:'生活没有如果10'
},
{
name:'钱七',
headImg: 'imgs/u6.jpg',
motto:'生活没有如果11'
},
{
name:'孙八',
headImg: 'imgs/u7.jpg',
motto:'生活没有如果12'
},
{
name:'张三',
headImg: 'imgs/u2.jpg',
motto:'生活没有如果13'
},
{
name:'李四',
headImg: 'imgs/u3.jpg',
motto:'生活没有如果14'
},
{
name:'王五',
headImg: 'imgs/u4.jpg',
motto:'生活没有如果15'
},
{
name:'赵六',
headImg: 'imgs/u5.jpg',
motto:'生活没有如果16'
},
{
name:'钱七',
headImg: 'imgs/u6.jpg',
motto:'生活没有如果17'
},
{
name:'孙八',
headImg: 'imgs/u7.jpg',
motto:'生活没有如果18'
}
];
btn.addEventListener('click',function(){
clearInterval(timer);
var date1 = new Date(),
oldMi = date1.getSeconds();
timer = setInterval(function(){
for(var j=0,len=lis.length; j<len; j++){
lis[j].className = '';
}
var i = parseInt(Math.random()*18),
uname1 = infor[i].name,
headImg1 = infor[i].headImg,
motto1 = infor[i].motto;
lis[i].className +='item';
uname.innerHTML = '姓名: '+uname1;
headImag.src = headImg1;
motto.innerHTML = '座右铭: '+motto1;
var date2 = new Date(),
nowMi = date2.getSeconds();
if(nowMi-oldMi == 3){
clearInterval(timer);
}
},25)
},false)
}
</script>
</body>
</html>