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 Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s