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 pathSettingsPC.html
66 lines (66 loc) · 1.98 KB
/
SettingsPC.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
58
59
60
61
62
63
64
65
66
<!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">
<!--引用CSS-->
<link rel="stylesheet" href="dream-ui.min.css">
<!--引用JS-->
<script src='https://s3.pstatp.com/cdn/expire-1-M/jquery/3.3.1/jquery.min.js'></script>
<script src="dream-ui.min.js"></script>
<!--超链接横线去除-->
<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">
<!--设置图-->
<img src="Setting.png" height="100" width="280" />
<!--内容-->
<p><h3>主题设置:</h3></p>
<h3>默认:新春 <button type="button" id="warn" warn="">设置</button></h3>
<h3>可选: 默认主题</h3>
<!--功能实现1-->
<script>
$( "#warn" ).click(function () {
UI.dialog.warn( "Warn 对话框", "内容区域" );
})
</script>
<!--背景设置-->
<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>
<h3><a href="./index.html">返回“主页”</a></h3>
<h3><a href="./SettingsPCls.html">“版本历史记录”</a></h3>
<!--超链接颜色设置-->
<body link="#9966FF">
<body alink="#9966FF">
<body vlink="#b7ffff">
</body>
</html>