-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_t.html
88 lines (87 loc) · 3.37 KB
/
index_t.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<title>电影瓣瓣</title>
<style type="text/css">
*{
font-family:inherit,"Droid Sans","微软雅黑", serif;
}
body{
background-color:#000000;
text-align: center;
vertical-align: top;
}
div{
margin:0px;
padding:0px;
border:0px;
}
a{
text-decoration: none;
color: #111111;
}
.movieItem{
/*class*/
width: 40%;
min-width: 350px;
max-width: 380px;
height: 300px;
/*line-height:40px;*/
/*float:left;*/
display: inline-block;
background-color:#eeeeee;
border:10px solid #eeeeee;
margin: 5px;
vertical-align: top;
text-align: left;
overflow: hidden;
}
.moviePostImg{
width:150px;
height:212px;
margin-right: 10px;
margin-bottom: 2px;
float:left;
}
#calendar{
/*id*/
width:385px;
}
</style>
<script>
function init()
{
//alert('onload');
}
</script>
</head>
<body onLoad="init()">
<div id="intro" class="movieItem" style="background-color:#d9d9c2;text-align: center;vertical-align: center;">
<span style="font-size:85px; color:rgb(172, 125, 49)">欢迎来到电影伴伴</span><br />
<span style="font-size:14px; color:#4a4a4a">更新日期:#更新日期#</span><br />
<span style="font-size:14px; color:#4a4a4a"><a href="http://dytt.net" style="color:#4a4a4a">更多新片下载...</a></span>
<span style="font-size:14px; color:#4a4a4a"><a href="http://www.kkkob.com" style="color:#4a4a4a">电影网盘搜索...</a></span>
<br />
<span style="font-size:14px; color:#aaaaaa">i 本网页由PYTHON爬虫程序生成</span>
</div>
<!---模板片段开始-->
<div id="template" class="movieItem" >
<a href="#下载地址#">
<img class="moviePostImg" src="#海报链接#" alt="点击下载" onerror="this.src='default_post.png';this.onerror=null;" />
<span><big><big><b>#电影名#</b></big></big></span><br />
<span><b>年份:</b>#年份#</span><br />
<span><b>国家:</b>#国家#</span><br />
<span><b>评分:</b>#评分#</span><br />
<span><b>类型:</b>#类型#</span><br />
<span><b>简介:</b>#简介#</span>
</a>
</div>
<!---模板片段结束-->
<div id="intro" class="movieItem" style="text-align: center;vertical-align: center;">
<span style="font-size:90px; color:rgb(79, 100, 106)">没有啦</span><br /><br /><br /><br /><br /><br /><br /><br />
<span style="font-size:14px; color:#4a4a4a"><a href="https://github.com/hotinewang/MovieBanban" style="color:#4a4a4a">get 爬虫代码 on GitHub</a></span><br /><br />
</div>
</body>
</html>