-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-tab.html
48 lines (45 loc) · 1.61 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./new-tab.css">
<script src="./jquery-3.3.1.min.js"type="text/javascript"></script>
<script src="./jquery-ui.min.js"type="text/javascript"></script>
<title>new tab</title>
</head>
<body>
<div class='container'>
<!-- 背景 -->
<div class="bg"><div class="vignette"></div></div>
<!-- 搜索框 -->
<form class="search-bar" action='http://www.baidu.com/baidu' target='_blank'>
<span class="icon"></span>
<input type="search" autocomplete="off" spellcheck="false" id="search" name='word' size='30' placeholder="使用百度搜索">
<div class="search-btn">
<input id='searchBtn' type="submit" value=''>
</div>
</form>
<!-- 标签 -->
<div id='sortable' class="label-wrapper"></div>
<!-- 时间 -->
<p class='time'></p>
<!-- 专注模式 --- 隐藏图标 -->
<div class="focus">
<span></span>
<p>专注模式</p>
</div>
<!-- pomodoro -->
<!-- <div class="pomodoro">
<p>pomodoro</p>
</div> -->
<div class="p-timer">
<div class="one"><p>25:00</p></div>
<div class="two"><p>5:00</p></div>
<div class="three"><p>1/4</p></div>
</div>
</div>
<script type='text/javascript' src='./new-tab.js'></script>
</body>
</html>