Files
AGuestSaas/components/swiperVideo/swiperVideo.wxss

39 lines
581 B
Plaintext

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