oblivion19
oblivion19

Reputation: 308

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.

Upvotes: 1

Views: 876

Answers (1)

emaxsaun
emaxsaun

Reputation: 4201

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>

Upvotes: 2

Related Questions