-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrome-new-tab.html
35 lines (35 loc) · 1.29 KB
/
chrome-new-tab.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
<!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>新标签页</title>
<link rel="stylesheet" href="./css/chrome-new-tab.css">
<link rel="icon" href="./img/icons8-chrome.svg">
<script src="./js/index.js"></script>
</head>
<body id="bg" ondragstart="window.event.returnValue=false;" style="background-color: white;">
<div class="logo">
<img src="./img/google_logo.svg">
</div>
<div class="inputwrapper">
<div class="search">
<form onsubmit="if(!search()) event.preventDefault();">
<input autofocus id="search_input" class="sbt" type="search" autocomplete="off" placeholder="在 Google 上搜索,或者输入一个网址">
</form>
</div>
<div class="searchicon">
<img src="./img/search.svg" onclick="search()">
</div>
<div class="voice">
<img src="./img/googlemic_clr_24px.svg">
</div>
</div>
<div class="windmill">
<img src="./img/windmill.svg" id="rotation" title="显示/移除壁纸">
<span id="rod"></span>
</div>
<script src="./js/changebg.js"></script>
</body>
</html>