0
* {
margin:0;
padding:0;
}
body {
margin:0 auto;
width:810px;
height:620px;
}
#number {
font-size:490px;
text-align:center;
width:600px;
height:600px;
float:left;
line-height:600px;
border:1px solid red;
}
#button {
float:right;
width:200px;
height:600px;
font-size:50px;
color:white;
cursor:pointer;
}
#button .button {
width:200px;
height:200px;
line-height:200px;
text-align:center;
}
#button #start {
background-color:#AAA;
}
#button #reset {
background-color:#CCC;
}
#button #ok {
background-color:green;
}
更新时间:2023-11-13 08:08:04
## 简易网页点名程序,数字版
- 配置参数: 路径 ./config.js
var config = {
"min":1, # 编号最小值
"max":50, # 编号最大值
"random_rate":10, # 倍率,提高随机性
"random_time":500, # 序号改变间隔,单位:毫秒
}- @todo:使用 jquery