DTCMS视频模版更改方法
时间:5年前 阅读:5313
1、去掉style.css中视频的高度
.video-box{ position:relative; width:100%; height:473px; _clear:both; _display:inline; }
去掉:height:473px;
2、更改JS代码
//初始化视频容器
if('{model.fields[video_src]}'!=''){
initCKPlayer('video-box', '{model.fields[video_src]}', '{config.webpath}scripts/ckplayer/ckplayer.swf');
$(".video-box").height(473);
}
//改变大小函数
function winResize() {
if ('{model.fields[video_src]}'!= '') {
if ($(".section").width() == 1180) {
$(".video-box").width(840);
$(".video-box").height(473);
} else {
$(".video-box").width(601);
$(".video-box").height(338);
}
}
}
本站声明:网站内容来源于网络,如有侵权,请联系我们https://www.qiquanji.com,我们将及时处理。
微信扫码关注
更新实时通知
网友评论