redxtech / vue-plyr

A Vue component for the plyr (https://github.com/sampotts/plyr) video & audio player.
Other
768 stars 136 forks source link

Controls disappears in full screen #515

Open VladimirMoroz95 opened 1 year ago

VladimirMoroz95 commented 1 year ago

Hi, plyr controls disappear when users open fullscreen mode with a double click.

<vue-plyr
  ref="plyr"
  :key="playerKey"
  :options="youtubePlayerVars"
  class="youtube-player"
>
  <div
    id="player"
    class="plyr__video-embed"
    @ready="emitReady"
    @playing="emitPlaying"
    @pause="emitPaused"
    @ended="emitEnded"
  >
    <iframe
      type="text/html"
      :src="`https://www.youtube.com/embed/${url}`"
      frameborder="0"
    />
  </div>

export const YOUTUBE_PLAYER_VARS = { autoplay: 1, modestbranding: 1, showinfo: 0, seekTime: 15, fullscreen: { enabled: true, fallback: true, iosNative: true, container: null as any, quality: { default: 720 } } };

"vue-plyr": "6.0.4"

gagres commented 6 months ago

Same problem here, anyone has any updates?