Overlaying a DIV On Top Of HTML 5 Video

前端 未结 4 1129
抹茶落季
抹茶落季 2020-12-04 14:44

I need to overlay a div ON TOP of a div containing an HTML 5 video. In the example below the overlaying div\'s id is \"video_overlays\". See example below:

4条回答
  •  [愿得一人]
    2020-12-04 15:13

    for this you need to just add css like this:

    #video_overlays {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.46);
      z-index: 2;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
    }
    #video_box{position: relative;}
    

提交回复
热议问题