-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.33 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>ONE search</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="viewport" content="initial-scale=1.0,user-scalable=no">
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>-->
<link rel="stylesheet" href="stylesheet/base.css" />
<link rel="stylesheet" href="stylesheet/style.css" />
<script src="javascript/jquery-2.0.3.min.js"></script>
<script src="javascript/onesearch.js"></script>
<script>
$(function(){
$("#search_input").onesearch();
});
setInterval(function(){
$('#info').fadeOut(1000,function(){
$(this).fadeIn(1000).children().first().appendTo(this);
});
},3000);
</script>
</head>
<body>
<header>
</header>
<div id="logo">
<img src="image/logo.jpg" alt="ONE search" width="300xpx" />
</div>
<div id="wrapper">
<form id="fm" action="" method="get" target="_blank" accept-charset="gbk">
<input form="fm" id="search_input" type="text" name="" autocomplete="off" />
</form>
</div>
<div id="info">
</div>
</body>
</html>