-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeater-time.html
97 lines (96 loc) · 3.09 KB
/
theater-time.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>场次信息</title>
<link href="style.css" rel="stylesheet">
<script src="main.js"></script>
</head>
<body>
<div class="w1200 theater">
<!--简介-->
<section class="theater-movie-detail">
<!--海报-->
<div class="theater-movie-poster"><img alt="" src="images/joker.jpg"></div>
<!--简介-->
<div class="detail-info theater-detail-info">
<section class="detail-title marginbottom15">
小丑 Joker<span class="year">(2019)</span>
</section>
<span>剧情 | 惊悚 | 犯罪 | 美国 | 122分钟</span>
<br>
<span>上映日期: 2019-10-04(美国)</span>
<br>
<span>主演: 杰昆·菲尼克斯 / 罗伯特·德尼罗 / 马克·马龙 / 莎姬·贝兹 / 谢伊·惠格姆</span>
</div>
</section>
<!--推荐列表-->
<div class="search-factor"></div>
<div class="list-sort">
<div class="sort-items">
<span class="sort-item">今天 12-16</span>
<span class="sort-item">明天 12-17</span>
<span class="sort-item">后天 12-18</span>
<span class="sort-item">周四 12-19</span>
<span class="sort-item">周五 12-20</span>
</div>
<div></div>
</div>
<div class="time-list">
<div class="time-list-item">
<div class="time">
<div class="time-start">11:30</div>
<div class="time-end">13:22散场</div>
</div>
<div class="time-list-movie-info">
<div class="language">国语2D</div>
<div class="movie-hall">3翼龙厅</div>
</div>
<div class="time-list-price">
<span class="lowestprice">29.8<span class="yuan">元</span></span>
</div>
<div class="time-list-btn-box">
<button onclick="seat()" value="购票" class="time-list-btn">选座购票</button>
</div>
</div>
<div class="time-list-item">
<div class="time">
<div class="time-start">12:20</div>
<div class="time-end">14:12散场</div>
</div>
<div class="time-list-movie-info">
<div class="language">国语2D</div>
<div class="movie-hall">7霸王龙厅</div>
</div>
<div class="time-list-price">
<span class="lowestprice">30.8<span class="yuan">元</span></span>
</div>
<div class="time-list-btn-box">
<button onclick="seat()" value="购票" class="time-list-btn">选座购票</button>
</div>
</div>
<div class="time-list-item">
<div class="time">
<div class="time-start">12:20</div>
<div class="time-end">14:12散场</div>
</div>
<div class="time-list-movie-info">
<div class="language">国语2D</div>
<div class="movie-hall">7霸王龙厅</div>
</div>
<div class="time-list-price">
<span class="lowestprice">30.8<span class="yuan">元</span></span>
</div>
<div class="time-list-btn-box">
<button onclick="seat()" value="购票" class="time-list-btn">选座购票</button>
</div>
</div>
</div>
</div>
<script>
function seat() {
window.location.href='seat.html';
}
</script>
</body>
</html>