开源部分代码
[HTML] 纯文本查看 复制代码 <!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 {
margin: 0;
font-family: Arial, sans-serif;
}
.header {
background-color: #004080;
color: white;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header h1 {
margin: 0;
font-size: 18px;
}
.header .time {
font-size: 14px;
}
.content {
padding: 20px;
}
.info {
text-align: center;
margin-bottom: 20px;
}
.table {
width: 100%;
border-collapse: collapse;
}
.table th, .table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.buttons {
text-align: center;
margin-top: 20px;
}
.button {
background-color: #f0f0f0;
border: none;
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="header">
<h1>定时自动关机</h1>
<span class="time">2023-10-03 17:27:00</span>
</div>
<div class="content">
<div class="info">
<p>下次执行时间:今天 18:00</p>
</div>
<table class="table">
<tr>
<th>定时关机计划</th>
<th>下次执行计划</th>
</tr>
<tr>
<td>18:00(每天)</td>
<td>2023-10-03 18:00:00</td>
</tr>
</table>
<div class="buttons">
<button class="button">添加定时关机</button>
<button class="button">删除</button>
<button class="button">立即睡眠</button>
</div>
</div>
</body>
</html>
|