DTCMS视频模版更改,

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);
        }
    }
}
复制代码

 

posted @   请叫我七哥  阅读(676)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示