-
Notifications
You must be signed in to change notification settings - Fork 818
/
mainpage.html
executable file
·128 lines (115 loc) · 3.88 KB
/
mainpage.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Win12浏览器</title> <!-- 优化:修改页面标题为描述性标题 -->
<style>
* {
margin: 0px;
padding: 0px;
}
html,
body {
height: 100%;
width: 100%;
}
* {
background: transparent;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body>div.input {
display: flex;
width: 50%;
/* height: 10%; */
height: 2em;
font-size: 1.3em;
border-radius: 25px;
border: none;
padding: 4px 25px 5px 25px;
align-items: center;
justify-content: space-between;
border: 2px solid #6f6f6f50;
backdrop-filter: saturate(1.3);
box-shadow: 1px 3px 8px #00000045;
}
body>div.input>input {
font-size: 1em;
border: none;
height: 100%;
width: 90%;
color: #7f7f7f;
}
body>div.input>input:focus {
outline: none;
}
body>div.logo {
width: 100%;
height: 60px;
background-image: url('./img/Bing.svg');
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
margin-bottom: 30px;
margin-top:-150px;
}
</style>
</head>
<body>
<div class="logo"></div>
<div class="input">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="#5F6368">
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" />
</svg>
<input type="text" onkeyup="handleKeyPress(event)" placeholder="在必应中搜索,或输入一个网址">
</div>
<script>
function handleKeyPress(event) {
// 如果按下的是回车键
if (event.keyCode === 13) {
// 获取输入框的值
var inputValue = event.target.value;
// 判断是否为搜索查询
if (isSearchQuery(inputValue)) {
// 在Bing中搜索
searchInBing(inputValue);
} else {
// 导航到指定URL
navigateToURL(inputValue);
}
}
}
function isSearchQuery(value) {
// 正则用来验证大部分常见的URL格式,包括以"http://"、"https://"或"ftp://"开头的URL
var urlPattern = /^(((ht|f)tps?):\/\/)?([^!@#$%^&*?.\s-]([^!@#$%^&*?.\s]{0,63}[^!@#$%^&*?.\s])?\.)+[a-z]{2,6}\/?/;
// 判断是否为URL
return !urlPattern.test(value);
}
function searchInBing(query) {
// 对查询进行编码
var encodedQuery = encodeURIComponent(query);
// 在新标签页中打开Bing搜索
window.location = 'https://bing.com/search?q=' + encodedQuery;
// 可能报错
apps.edge.rename(query);
}
function navigateToURL(url) {
// 如果URL不包含协议前缀
if (!/^https?:\/\//.test(url)) {
// 添加默认的HTTP协议前缀
url = 'http://' + url;
}
// 导航到指定URL
window.location = url;
// 可能报错
apps.edge.rename(url);
}
</script>
</body>
</html>