fix:调整摄像头显示区域为竖屏

This commit is contained in:
rainv123
2026-02-09 17:22:28 +08:00
parent c3da3e937e
commit b22f430e98
+9 -8
View File
@@ -1377,8 +1377,8 @@ body {
position: fixed; position: fixed;
top: 20px; top: 20px;
left: 20px; left: 20px;
width: 240px; width: 180px;
height: 180px; height: 240px;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
border-radius: 8px; border-radius: 8px;
@@ -1402,10 +1402,11 @@ body {
@keyframes flipWithPosition { @keyframes flipWithPosition {
0% { 0% {
transform: var(--original-transform) rotateY(0deg); transform: var(--original-transform) rotateY(0deg);
} }
100% { 100% {
transform: var(--original-transform) rotateY(180deg); transform: var(--original-transform) rotateY(180deg);
} }
} }
@@ -1425,10 +1426,10 @@ body {
.camera-switch { .camera-switch {
display: none; display: none;
position: fixed; position: fixed;
bottom: 23px; bottom: 23px;
right: 20px; right: 20px;
z-index: 999; z-index: 999;
color: #fff; color: #fff;
} }