DTCMS视频模版更改,

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
        }
    }
}

 

以上是关于DTCMS视频模版更改,的主要内容,如果未能解决你的问题,请参考以下文章

使用Visual Studio Code自定义代码模版

使用 Git 来管理 Xcode 中的代码片段

DTcms网站伪静态逻辑

dtcms在windows虚拟主机下怎么配置url地址伪静态显示

vscode设置vue模版

DTCMS缓存的读取以优化网站速度