37 lines
552 B
Plaintext
37 lines
552 B
Plaintext
|
|
/**
|
|
* Web唐明明
|
|
* 一个梦想做木雕手艺人的程序员
|
|
* explain: videoSwiper
|
|
*/
|
|
|
|
.videoSwiper{
|
|
background-color: #0e0c1a;
|
|
height: 100%;
|
|
}
|
|
|
|
.videoSwiperItem{
|
|
position: relative;
|
|
-webkit-overflow-scrolling:touch;
|
|
}
|
|
|
|
.videoSwiperItem video{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* 视频按钮 */
|
|
.videoLayer-play{
|
|
position: relative;
|
|
width: 78rpx;
|
|
height: 78rpx;
|
|
left: calc(50% - 39rpx);
|
|
top: calc(50% - 39rpx);
|
|
opacity: 0;
|
|
transition: all .5s;
|
|
}
|
|
|
|
.videoLayer-play.show{
|
|
opacity: .7;
|
|
}
|