...
|
...
|
@@ -18,7 +18,7 @@ |
|
|
<div class="show_9 clearfix">
|
|
|
<!-- 视频 -->
|
|
|
<div class="show_9_video">
|
|
|
<img class="video_poster" src="__TMPL__/public/assets/starImg/bicon_28.png" alt="">
|
|
|
<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>
|
...
|
...
|
@@ -47,6 +47,7 @@ |
|
|
<p>
|
|
|
{$vo.post_title}
|
|
|
</p>
|
|
|
<input type="text" value="{:cmf_get_file_download_url($vo.video)}" class="li_video">
|
|
|
</li>
|
|
|
</volist>
|
|
|
</ul>
|
...
|
...
|
@@ -76,12 +77,30 @@ |
|
|
<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")
|
|
|
$(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")
|
|
|
$(this).next('img').attr('src', "__TMPL__/public/assets/starImg/down.png");
|
|
|
$('.select ul').toggle();
|
|
|
}
|
|
|
|
...
|
...
|
@@ -111,8 +130,9 @@ |
|
|
// 点击播放
|
|
|
function bofang() {
|
|
|
video.play();
|
|
|
$('#video').attr('controls', 'controls');
|
|
|
$('.show_9_video img').hide();
|
|
|
$('#video').attr('controls', 'controls')
|
|
|
$('.play_button').hide();
|
|
|
$('.video_poster').css('z-index', '-1');
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
...
|
...
|
|