好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

基于html5,父级块中添加video,不能全屏播放的问题解决。

使用video标签,视频总不能占满父级全屏,本来预算的10分钟工程,结果卡在video这里了,勤奋的小果,还是打算记下来,共勉。。。

代码(css内容):

 
html,body{
height: 100%;
width: 100%;
}
p{
height: 50px;
margin: 20px;
font-size: 1.5em;
}
.videoTime{
position: relative;
height: 100%;
width: 80%;
border: 2px solid red;
}
.videoTime video{
position: absolute;
height: 100%;
width: 100%;
}
  

代码(body内容)


视频

视频

查看更多关于基于html5,父级块中添加video,不能全屏播放的问题解决。的详细内容...

  阅读:37次