The control bar is the rectangular area that contains and sits behind all the UI controls available for the Smart Crop Video viewer, such as the play/pause button and volume controls.
The control bar always takes the entire available viewer width. It is possible to change its color, height, and vertical position by CSS, relative to the Smart Crop Video viewer container.
The following CSS class selector controls the appearance of the control bar:
.s7smartcropvideoviewer .s7controlbar
top |
Position from the top border, including padding. |
bottom |
Position from the bottom border, including padding. |
height |
Height of the control bar. |
background-color |
Background color of the control bar. |
To set up a Smart Crop Video viewer with a gray control bar that is 30 pixels tall and sits at the top of the Smart Crop Video viewer container.
.s7smartcropvideoviewer .s7controlbar {
position: absolute;
top: 0px;
height: 30px;
background-color: rgb(51, 51, 51);
}