mirror of
https://github.com/tjy-gitnub/win12.git
synced 2026-08-29 00:41:17 +08:00
ffeaa15e30
- 新增了桌面小组件,可将小组件添加到桌面并调整位置 - 新增了编辑模式,可快捷编辑小组件的位置,并提供了相关的快捷入口 - 新增了窗口全屏且Dock不在使用时自动隐藏的功能 - 为Microsoft Edge浏览器和文件资源管理器新增了后退/前进的功能 - 又双叒叕优化计算器的精度问题与安全性问题 - 重写更新机制,并完善 Windows 更新 - 修复了文件资源管理器中右键文件失效的问题 - 修复了Edge浏览器无法正确进行搜索的问题 - 修复了文件资源管理器中无法正确显示文件夹中文件的问题 - 更换了Python Editor的图标 - 完善了开源说明 - 优化了bios界面 - 其他细节与修复
56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Windows 12 网页版</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<style>
|
|
@font-face {
|
|
font-family: 'dos';
|
|
src: url(../../fonts/dos.ttf);
|
|
}
|
|
|
|
* {
|
|
font-family: 'dos';
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border: 0px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
scrollbar-width: none;
|
|
/* Firefox */
|
|
-ms-overflow-style: none;
|
|
/* IE 10+ */
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
/* Chrome Safari */
|
|
}
|
|
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body style="background-color: black;color: white;cursor: none;/*加载界面隐藏鼠标指针*/" id="body" scroll="no">
|
|
<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> |