index.wxss 827 Bytes
Newer Older
李嘉林 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
.VideoPlayer {
}
.title {
  font-size: 36rpx;
  padding: 20rpx 40rpx;
  color: #333;
  font-weight: bold;
}
.main{
  width: 100%;
}
.main .isVideo{
  width: 100%;
14 15
  height:0;
  padding-bottom:56.25%;
李嘉林 committed
16 17 18 19
  position: relative;
}
.main .isVideo video{
  width: 100%;
20 21 22 23 24
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
李嘉林 committed
25
  display: block;
李嘉林 committed
26
}
27 28 29 30 31 32 33
.main .isVideo video .posterImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
李嘉林 committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
.main .isVideo .playerBtn{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120rpx;
  height: 120rpx;
  margin-top: -60rpx;
  margin-left: -60rpx;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
.main .isVideo .playerBtn image{
  width: 100%;
  height: 100%;
}