CSS Video Hack in questfox

Sometimes you do not want to disturb people during an interview showing them their own face.
While keeping up the recording quality, it is possible to shrink the video screen with CSS.

#videoElement {
max-width: 100px;
}

#videoContainer {
max-width: 200px;
}

#controlElement  {
max-width: 300px;
}

If you want to have an instagram effect with the recording button on top of the video you can have the following setting

videoElement {max-width: 100px;
max-height: 100px;
}

videoContainer {max-width: 200px;
max-height: 100px;
}

controlElement {max-width: 300px;

color:blue;
}



Leave a comment