[call-me] - fix local video mirror

This commit is contained in:
Miroslav Pejic
2025-04-02 09:04:58 +02:00
parent 140cb5e31e
commit eb775cdd76
3 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "call-me",
"version": "1.0.81",
"version": "1.0.82",
"description": "Your Go-To for Instant Video Calls",
"author": "Miroslav Pejic - miroslav.pejic.85@gmail.com",
"license": "AGPLv3",
+1
View File
@@ -640,6 +640,7 @@ function handleSignIn(data) {
.then((myStream) => {
stream = myStream;
localVideo.srcObject = stream;
localVideo.className = 'mirror';
localVideo.playsInline = true;
localVideo.autoplay = true;
localVideo.muted = true;
+6
View File
@@ -149,6 +149,12 @@ video::-webkit-media-controls {
display: none !important;
}
.mirror {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
transform: rotateY(180deg);
}
/* Local Video Styles */
#localVideoContainer {
z-index: 3;