视频播放缩略图 播放按钮 样式

视频播放样式

.myVideo{
  position: relative;
  display: inline-block;
}
.myVideo:before {
  content: '';
  position: absolute;
  z-index: 3;
  width: 30%;
  height: 30%;
  background: url(/assets/images/play.png);
  background-size: 100% 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}