You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.2 KiB
73 lines
2.2 KiB
2 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="zh-CN">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>课堂管理系统</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
background: linear-gradient(135deg, #6e8efb, #a777e3);
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
color: white;
|
||
|
}
|
||
|
.container {
|
||
|
text-align: center;
|
||
|
background: rgba(255, 255, 255, 0.1);
|
||
|
padding: 40px;
|
||
|
border-radius: 20px;
|
||
|
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
|
||
|
backdrop-filter: blur(8.5px);
|
||
|
-webkit-backdrop-filter: blur(8.5px);
|
||
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
||
|
}
|
||
|
h1 {
|
||
|
margin-bottom: 40px;
|
||
|
font-size: 2.5em;
|
||
|
}
|
||
|
.button-group {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 20px;
|
||
|
}
|
||
|
button {
|
||
|
padding: 15px 30px;
|
||
|
font-size: 1.2em;
|
||
|
border: none;
|
||
|
border-radius: 50px;
|
||
|
background-color: #ff5722;
|
||
|
color: white;
|
||
|
cursor: pointer;
|
||
|
transition: transform 0.2s, background-color 0.3s;
|
||
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: #ff3d00;
|
||
|
transform: scale(1.05);
|
||
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
|
||
|
}
|
||
|
@media (max-width: 600px) {
|
||
|
.button-group {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="container">
|
||
|
<h1>课堂管理系统</h1>
|
||
|
<div class="button-group">
|
||
|
<button onclick="window.location.href='dianming.html'">课堂点名</button>
|
||
|
<button onclick="window.location.href='select.html'">随机提问</button>
|
||
|
<button onclick="window.location.href='score_display.html'">积分显示</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|