This repository has been archived by the owner on Jun 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsPCls.html
57 lines (57 loc) · 2 KB
/
SettingsPCls.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<head>
<!--编码设置-->
<meta charset="utf-8">
<!--页面标题-->
<title>Wen搜索-设置>版本历史</title>
<!--页面图标-->
<link rel="icon" href="./mario.ico" type="image/x-icon">
<link rel="shortcut icon" href="./mario.ico" type="image/x-icon">
<!--超链接横线去除-->
<style>
a{
text-decoration: none;
}
</style>
<!--其他设置-->
<script>
document.oncontextmenu = function () { return false; };
document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
event.keyCode = 0;
event.returnValue = false;
return false;
}
};
</script>
</head>
<body oncontextmenu=self.event.returnValue=false onselectstart="return false">
<!--内容-->
<h1>版本历史纪录:</h1>
<h2>23.02:本项目寿命已结束,将转移为<a href="https://pro.wensou.tk/">WenSearchPro</a>。本版更新了天气功能,修复了一些Bug</h2>
<h3>22.1.25:新春快乐!本版已更名为Wen搜索,更新了搜素框样式,新春主题默认开启,可在设置中管理。</h3>
<h3>22.1.132:新增“设置”,版本历史纪录被归纳到设置中,设置未搭建完成,功能暂不可用。</h3>
<h3>22.1.13:修复每日一图不会更新的Bug。</h3>
<h3>22.1.12:版本号规律更改,新增每日一图,UI的小改动。</h3>
<h3>22.11.102:更新了随机诗词。</h3>
<h3>22.11.1:初版。</h3>
<h3><a href="./SettingsPC.html">返回“设置”</a></h3>
<!--背景设置-->
<style>
body{
width:100%;
height:100%;
background: url(https://img.cdn.aliyun.dcloud.net.cn/hbuilderx/website/en/[email protected]) no-repeat;
-moz-background-size: cover; /*背景图片拉伸以铺满全屏*/
-ms-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
}
</style>
<!--超链接文字设置-->
<body link="#9966FF">
<body alink="#9966FF">
<body vlink="#b7ffff">
</body>
</html>