案例介绍
案例主要通过使用定时器来实现随机点名。
效果展示
代码展示
HTML
<div class="container">
<h2>随机点名器</h2>
<div class="username">开始点名</div>
<button class="btn">开始</button>
</div>
CSS
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
background-color: aliceblue;
}
.username {
width: 200px;
height: 100px;
border: 2px solid gray;
color: black;
display: flex;
justify-content: center;
align-items: center;
}