Search code examples
jwplayerjwplayer7

jwplayer 7.0.3 display play button when paused


I would like to display the play button when the stream is on pause state.

So far I tried adding the jw-state-idle, but this removes the static image when paused.


Solution

  • You can use some CSS to do this.

    <style>
    .jwplayer.jw-state-paused .jw-display-icon-container {
    display: table;
    }
    .jwplayer.jw-state-paused .jw-icon-display::before {
    content: "\e60e";
    }
    </style>