You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>起点中文网爬虫</title>
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/index.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo" style="background-image: url(img/baidu.png)"></div>
|
|
<div class="input">
|
|
<input type="text" placeholder="请输入要搜索的内容" autocomplete="off" id="search-input">
|
|
<div class="picker">爬虫</div>
|
|
<ul class="picker-list">
|
|
<li style="background-image: url(img/ico_baidu.png)" data-logo="baidu.png">百度</li>
|
|
<li style="background-image: url(img/ico_sogou.png)" data-logo="sogou.png">搜狗</li>
|
|
<li style="background-image: url(img/ico_bing.png)" data-logo="bing.png">bing</li>
|
|
<li style="background-image: url(img/ico_google.ico)" data-logo="google.png">Google</li>
|
|
</ul>
|
|
<div class="hot-list"></div>
|
|
</div>
|
|
<div class="search"></div>
|
|
</div>
|
|
<script type = "text/javascript"
|
|
src = "{{ url_for('static', filename = 'js/jquery.js') }}" ></script>
|
|
<script type = "text/javascript"
|
|
src = "{{ url_for('static', filename = 'js/index.js') }}" ></script>
|
|
<!-- <script src="js/jquery.js"></script>-->
|
|
<!-- <script type="text/javascript" src="js/index.js"></script>-->
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
helangSearch.init();
|
|
})
|
|
</script>
|
|
</body>
|
|
|
|
</html> |