加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
boot.html 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
NB-Group 提交于 2023-10-15 20:38 . v7.3.6 语音球更新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Windows 12 Web Version</title> <!-- 优化:更具描述性的页面标题 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- 优化:添加 viewport meta 标签,确保在移动设备上的适配性 -->
<style>
@font-face {
font-family: 'dos';
src: url(../../fonts/dos.ttf);
}
* {
font-family: 'dos';
margin: 0; /* 优化:合并重复的 CSS 属性 */
padding: 0;
border: 0;
user-select: none;
scrollbar-width: none;
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
}
::-webkit-scrollbar {
display: none;
}
body {
background-color: black;
color: white;
cursor: none; /* 优化:使用 CSS 属性来隐藏鼠标指针 */
}
.loading {
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<body style="background-color: black;color: white;cursor: none;/*加载界面隐藏鼠标指针*/" id="body" scroll="no"></body>
<div id="center-div" style="width: 114; /* width 不重要,重要的是 height */"></div>
<div id="info">
<div class="loading">
<p>Starting</p>
<div id="load" style="background-color: #acabac; width: 200px; height: 20px;"></div>
<div id="back" style="background-color: #565656; width: 200px; height: 20px;"></div>
<br>
</div>
<p style="text-align: center;">Press F2 or touch screen to enter SETUP</p>
</div>
<script src="./scripts/boot_kernel.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化