YNUtdPlatform/uni_modules/mcc-face/static/index.css

31 lines
382 B
CSS
Raw Normal View History

2024-08-07 14:53:53 +08:00
*{
box-sizing: border-box;
}
body{
margin: 0px;
padding: 0px;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#video{
width: 100vw;
height: 100vh;
object-fit: cover;
transform: rotatey(180deg);
}
#hello{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
background: #000;
text-align: center;
color: #fff;
z-index: 9;
top: 50px;
}
#hello.on{
background: red;
}