DocumentationDynamic Media Viewers Reference Guide

Play/Pause button

Last update: February 11, 2022
  • Topics:
  • Dynamic Media Classic,Viewers,SDK/API,Video

CREATED FOR:

  • Developer
  • User

The play/pause button causes the video player to play or pause the video content when a user clicks it.

You can size, skin, and position the button, relative to the control bar that contains it, by CSS.

The following CSS class selector controls the appearance of the button:

.s7videoviewer .s7playpausebutton

CSS properties of the play/pause button

topPosition from the top border, including padding.
rightPosition from the right border, including padding.
leftPosition from the left border, including padding.
bottomPosition from the bottom border, including padding.
widthWidth of the button.
heightHeight of the button.
background-imageThe image that is displayed for a given button state.
background-position

Position inside artwork sprite, if CSS sprites are used.

See CSS Sprites.

NOTE
This button supports both the state, selected, and replay attribute selectors, which can be used to apply different skins to different button states. In particular, selected='true' corresponds to the “play” state and selected='false' corresponds to the “pause” state;
The attribute selector replay='true' is set when the video has reached the end and selecting the button restarts playback from the beginning.

The button tool tip can be localized. See Localization of user interface elements for more information.

Example

To set up a play/pause button that is 32 x 32 pixels and positioned six pixels from the top and left edge of the control bar. And finally, displays a different image for each of the four different button states when selected or not selected.

.s7videoviewer .s7playpausebutton {
top:6px;
left:6px;
width:32px;
height:32px;
}
.s7videoviewer .s7playpausebutton[selected='true'][state='up'] {
background-image:url(images/playBtn_up.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][state='over'] {
background-image:url(images/playBtn_over.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][state='down'] {
background-image:url(images/playBtn_down.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][state='disabled'] {
background-image:url(images/playBtn_disabled.png);
}
.s7videoviewer .s7playpausebutton[selected='false'][state='up'] {
background-image:url(images/pauseBtn_up.png);
}
.s7videoviewer .s7playpausebutton[selected='false'][state='over'] {
background-image:url(images/pauseBtn_over.png);
}
.s7videoviewer .s7playpausebutton[selected='false'][state='down'] {
background-image:url(images/pauseBtn_down.png);
}
.s7videoviewer .s7playpausebutton[selected='false'][state='disabled'] {
background-image:url(images/pauseBtn_disabled.png); }
}
.s7videoviewer .s7playpausebutton[selected='true'][replay='true'][state='up'] {
background-image:url(images/replayBtn_up.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][replay='true'][state='over'] {
background-image:url(images/replayBtn_over.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][replay='true'][state='down'] {
background-image:url(images/replayBtn_down.png);
}
.s7videoviewer .s7playpausebutton[selected='true'][replay='true'][state='disabled'] {
background-image:url(images/replayBtn_disabled.png);
}
recommendation-more-help
b7426f53-aad9-4c00-83fc-664f30f681e8