你好,我试图修复css,这唯一的问题出现在全屏上,因为视频is确实有用于全屏的css,但我一直试图绕过宽度。
对于主要进度条,我使用以下方法
.vjs-cinematography-skin .vjs-progress-control {
border-style: solid;
border-width: 1px;
border-color: #666;
position: absolute;
left: 100px;
right: 0;
width: 55%;
font-size: 0.3em;
height: 2em;
/* Set above the rest of the controls. *///
top: 4em;
/* Shrink the bar slower than it grows. *///
.transition(all 0.4s);
}但是,由于调试原因,我尝试使用全屏更改这个选项,因为我添加了颜色。
.vjs-cinematography-skin .vjs-progress-control .vjs-fullscreen .vjs-fullscreen-control div {
width: 100% !important;
background-color: #FFF !important;
}但是我尝试过许多方法,我也不确定如何绕过css只用于全屏。
这是我的演示链接
http://muse4u.tv/dev/dist/demo.html
发布于 2015-05-24 03:08:33
对于任何需要知道您可以绕过这样的css的人,我花了一段时间才弄明白:)
.vjs-cinematography-skin.vjs-fullscreen .vjs-progress-control { width: 86% !important; }https://stackoverflow.com/questions/30419605
复制相似问题