-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
200 lines (165 loc) · 4.47 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="zh">
<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">
<meta name="Keywords" content="ultraman zero,奥特曼,测一测,赛罗,迪迦,贝利亚,捷德,银河奥特曼,格丽乔,泽塔,泰迦奥特曼,艾斯,欧布,艾迪,赛文,盖亚,戴拿,托雷基亚,梦比优斯,阿古茹,风马,泰塔斯,罗布,欧布,布鲁,赛迦,罗索,奥特之父,奥特之母,奥特之王,泰罗,杰克,
ultraman ribut,ultraman upin ipin,ultraman ribut upin ipin,ultraman ribut terbaru,youtube short ultraman,tiktok ultraman,story wa ultraman,likee ultraman,tiktok ultraman lucu,story wa ultraman lucu,likee ultraman lucu,terbaru,viral,2021,viral 2021,ultraman geed,ultraman orb,ultraman zero,galactron,ultraman ginga,truk oleng,truk tambang,truk,mobil oleng">
<title>{$art_info['introduction']}</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1317315940914021"
crossorigin="anonymous"></script>
</head>
<style type="text/css">
body {
background-color: #0b0d20;
background-image: url('{$art_info['first_page_img']}');
background-repeat: no-repeat;
background-size: 102%;
}
@media screen and (min-width: 830px) {
body {
background-color:#0b0d20;
background-image: url('{$art_info['first_page_img']}');
background-repeat: no-repeat;
background-position-x:50% ;
background-size: unset;
margin: 0 auto;
max-width: 360px;
}
}
a{
list-style: none;
text-decoration: none;
color: black;
}
.btn_click {
width: 100%;
height: 8rem;
background-image: url("../../static/img/click.png");
background-repeat: no-repeat;
background-size: 60%;
background-position: center;
margin-top: 130%;
-webkit-animation: mymove 5s infinite;
/* Chrome, Safari, Opera */
animation: mymove 5s infinite;
}
@keyframes mymove {
0% {
transform: scale(1);
/*开始为原始大小*/
}
25% {
transform: scale(1.05);
/*放大1.1倍*/
}
50% {
transform: scale(1);
}
75% {
transform: scale(1.05);
}
}
@-webkit-keyframes mymove
/*Safari and Chrome*/
{
0% {
transform: scale(1);
/*开始为原始大小*/
}
25% {
transform: scale(1.05);
/*放大1.1倍*/
}
50% {
transform: scale(1);
}
75% {
transform: scale(1.05);
}
}
.product_list {
width: 96%;
height: 130rem;
background-color: #ffffff;
border-radius: 1rem;
display: block;
margin: 0 auto;
box-shadow: white 0px 0px 10px 4px;
margin-top: 10%;
}
button {
width: 30%;
height: 20%;
border-radius: 20px;
background-color: #3A87AD;
color: white;
/* font-size: 1em; */
border: none;
line-height: 20%;
margin-left: 60%;
/* margin-top: 16%; */
}
.listinfo {
margin: 0 auto;
margin-top: 10px;
padding-right: 3px;
border-bottom: 1px dotted #666;
position: relative;
}
.leftContent {
position: absolute;
top: 4px;
left: 4px;
}
.leftContent img {
width: 20%;
border: 1px solid #ccc;
padding: 2px;
}
.rightContent {
margin-left: 25%;
height: 150px;
}
.rightContent p{
color: #CCCCCC;
font-size: 0.8em;
}
.rightContent h4{
color: #060e68;
}
</style>
<body class="container-fluid" style="background-color: {$art_info.back_color|default=''};">
<div class="row">
<!-- 点击按钮 -->
<a href="{:url($art_info.controller)}?id={$aid}">
<div class="btn_click"></div>
</a>
</div>
<div class="row product_list">
<img src="../../static/img/hot.png" width="100%">
<!-- 产品列表 -->
{volist name='hot_info' id='vo'}
<div class="listinfo">
<a href="{:url('index/index/index')}?id={$vo.id}">
<div class="leftContent"><img src="{$vo.first_page_img}"></div>
<div class="rightContent">
<h4>{$vo.game_title}</h4>
<p>{$vo.introduction}</p>
<button type="button">立即测试</button>
</div>
</a>
</div>
{/volist}
<p style="text-align: center;font-size: 1em;color: #CCCCCC;padding:10%;">这已经是我的底线了o(╥﹏╥)o</p>
</div>
</body>
</html>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HKFQHPC4RN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HKFQHPC4RN');
</script>