12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* pages/example/index.wxss */
- .container{
- overflow: hidden;
- }
- .container>video{
- height: 100%;
- width: 100%;
- position: fixed;
- background: none;
- transition: all ease 0.5s;
- }
- .container > .c_bg{
- position: fixed;
- z-index: -1;
- transform: translate(-50%,-50%);
- left: 50%;
- top: 50%;
- width: 100%;
- height: 100%;
- filter: blur(10px);
- }
- .ai_bottom{
- width: 280rpx;
- display: inline-block;
- text-align: center;
- position: fixed;
- bottom: 8%;
- left: 50%;
- transform: translateX(-50%);
- font-size: 0;
- z-index: 999;
- }
- .ai_bottom > image{
- width: 100%;
- margin: 0 auto;
- display: inline-block;
- }
- .ai_bottom > text{
- font-size: 28rpx;
- display: inline-block;
- color: #fff;
- position: absolute;
- top: 50%;
- left: 50%;
- line-height: 100%;
- transform: translate(-50%,-50%);
- }
|