You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/application/wap/view/first/special/play.html

41 lines
1.6 KiB

<!-- +---------------------------------------------------------------------- -->
<!-- | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ] -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved. -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权 -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397 -->
<!-- +---------------------------------------------------------------------- -->
{extend name="public/container"}
{block name="head_top"}
<link rel="stylesheet" type="text/css" href="{__WAP_PATH}zsff/css/video-js.min.css"/>
<script src="{__WAP_PATH}zsff/js/video.min.js"></script>
<script src="{__WAP_PATH}zsff/js/video.zh.js"></script>
<script src="{__WAP_PATH}zsff/js/md5.js"></script>
<style>
.video-js{
height: 100% !important;
width: 100% !important;
}
.video-js .vjs-big-play-button{
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
</style>
{/block}
{block name="content"}
<div class="thematic-details">
<div class="swiper-conter" style="height: 360px">
<video id="play" class="video-js" controls="controls">
<source src="{$link}"></source>
</video>
</div>
</div>
{/block}
{block name='foot'}
<script>
var myPlayer = videojs('play');
</script>
{/block}