Reputation: 308
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
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