Video player icon effect video-player-icon-effect
The Play icon is overlaid on the video view area. It displays when the video is paused, or when the end of the video is reached, and it also depends on the iconeffect parameter.
The appearance of the play icon is controlled with the following CSS class selector:
.s7mixedmediaviewer . s7videoplayer .s7iconeffect
CSS properties of the play icon
Icon effect supports the state
attribute selector. The selector state="play"
is used when the video is paused in the middle of playback, and state="replay"
is used when the play head is in the end of the stream.
Example section-e8caea0a303c425a8a637c2a47c06355
Set up a 100 x 100 pixel play icon.
.s7mixedmediaviewer .s7videoplayer .s7iconeffect {
width: 100px;
height: 100px;}
.s7mixedmediaviewer .s7videoplayer .s7iconeffect[state="play"] {
background-image: url(images/playIcon.png);
}
.s7mixedmediaviewer .s7videoplayer .s7iconeffect[state="replay"] {
background-image: url(images/replayIcon.png);
}
recommendation-more-help
b7426f53-aad9-4c00-83fc-664f30f681e8