get_more_video.html
5.5 KB
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
<!DOCTYPE html>
<html lang="en">
<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">
<title>星域秀场--星球影院</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
</head>
<body>
<include file="public@header"/>
<!-- 弹出框 -->
<div class="video_mask">
您还不是VIP,可试看15秒
</div>
<div class="show_9 clearfix">
<!-- 视频 -->
<div class="show_9_video">
<img class="video_poster iop" src="__TMPL__/public/assets/starImg/bicon_28.png" alt="">
<video id="video" width="100%" height="426" src="__TMPL__/public/assets/starImg/video.mp4"></video>
<img class="play_button" onclick="bofang()" src="__TMPL__/public/assets/starImg/aicon_30.png" alt="">
</div>
<!-- 视频侧边选择 -->
<div class="show_9_video_aside">
<!-- 顶部 -->
<div class="show_9_video_asideTie clearfix">
<p>专辑</p>
<div class="select">
<input type="text" value="中国" readonly="readonly">
<img src="__TMPL__/public/assets/starImg/down.png" alt="">
<ul style="height:300px;overflow-y: scroll;width:145px;">
<li>所有</li>
<volist name="city_name" id="vo">
<li value="{$vo.id}" <eq name="$vo.id" value="$city_id">selected</eq>>{$vo.name}</li>
</volist>
</ul>
</div>
</div>
<!-- 视频 -->
<div class="show_9_video_asideCon">
<ul class="curren">
<volist name="res['data']" id="vo">
<li class="clearfix">
<img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
<p>
{$vo.post_title}
</p>
<input type="text" value="{:cmf_get_file_download_url($vo.video)}" class="li_video">
</li>
</volist>
</ul>
</div>
</div>
<!-- 底部 -->
<div class="show_9_video_asideTxt clearfix">
<!-- 标题 -->
<h1>令人神往的蒙大拿州弗里德黑德湖</h1>
<!-- 国家 -->
<div class="show_9_video_asideTxt2">
<p>国家:美国</p>
<p>取景:蒙大拿州弗里德黑德湖</p>
<p>上映时间:2019-11-12</p>
</div>
<!-- 分享 -->
<div class="show_9_video_asideTxt3 clearfix">
<p>分享:</p>
<img src="__TMPL__/public/assets/starImg/aicon_89.png" alt="">
<img src="__TMPL__/public/assets/starImg/aicon_90.png" alt="">
</div>
</div>
</div>
<include file="public@footer"/>
<script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
<script src="__TMPL__/public/assets/js/public.js"></script>
<script>
// 星域秀场视频
$(function() {
$('.curren li').each(function() {
$(this).click(function() {
// 封面图
var img = $(this).find('img').attr('src');
$('.video_poster').attr('src', img);
// 视频
$('.video_poster').css('z-index', '10');
$('.play_button').show();
$('.play_button').css('z-index', '11');
var videoSrc = $(this).children('.li_video').val();
$('#video').attr('src', videoSrc);
// 视频标题
var videoTitle = $(this).children('p').text();
$('.show_9_video_asideTxt h1').text(videoTitle);
});
});
$('.select input').click(function() {
if ($(this).next('img').attr('src') == "__TMPL__/public/assets/starImg/down.png") {
$(this).next('img').attr('src', "__TMPL__/public/assets/starImg/up.png");
$('.select ul').toggle();
} else {
$(this).next('img').attr('src', "__TMPL__/public/assets/starImg/down.png");
$('.select ul').toggle();
}
});
$('.select ul li').click(function() {
$('.select input').val($(this).text());
$('.select ul').hide();
var index = $(this).index();
$('.curren').eq(index).addClass('video_active').siblings().removeClass('video_active');
});
$(document).ready(function() {
var val = $('.select input').val();
var val2 = $('.select ul li:first-child').text();
val = val2;
$('.select input').val(val);
});
// 弹出框
setInterval(function() {
$('.video_mask').hide();
}, 4000);
$('.curren').eq(0).addClass('video_active');
});
// 点击播放
function bofang() {
video.play();
$('#video').attr('controls', 'controls')
$('.play_button').hide();
$('.video_poster').css('z-index', '-1');
}
</script>
</body>
</html>