Plyr: Microsoft Edge Full Screen Issue

Created on 29 Oct 2018  路  6Comments  路  Source: sampotts/plyr

Expected behaviour

When minimizing a video from full screen while video is playing in microsoft edge, the video should return to its default size and user should have access to all video controls

Actual behaviour

Video controls become hidden, they appear to fall out of bounds with the video box. This is happening on your demo plyr as well. https://plyr.io/

Steps to reproduce

Start a video in microsoft edge, click the expand button, minimize the fullscreen video. Notice the controls fall out of the video player

Environment

  • Browser: Edge
  • Version: 17.17
  • Operating System: Windows
  • Version: 10

Screenshot of issue

screen shot 2018-10-29 at 9 30 46 am

All 6 comments

This is really a bug with Edge but I鈥檒l see if we can do a workaround by forcing a redraw or something I guess.

Thanks Sampotts for taking a look at it and responding quickly

Hey, I am interested in a fix for this as well. Also wondering if it would be possible to have a forceNativeFullscreen option ?

@VeronicaM We also had this issue and currently testing it out on other resolutions but so far this has been working for me. Add this to you CSS:

@supports (-ms-ime-align:auto) {
    .plyr__progress {
        width: 50%;
    }
}

The @supports... applies it only on MSEdge Browsers.

We just ran into this, it happens whenever you go from a larger width video to a smaller width video in Edge. We had a similar fix that didn't seem to effect other browsers:

.plyr__progress,
.plyr__volume {
  width: 0px;
}

We just ran into this, it happens whenever you go from a larger width video to a smaller width video in Edge. We had a similar fix that didn't seem to effect other browsers:

.plyr__progress,
.plyr__volume {
  width: 0px;
}

Worked for me @FlipgridMartin ! Thank you very much!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

TheZoker picture TheZoker  路  4Comments

Lycanthrope picture Lycanthrope  路  4Comments

jwjcmw picture jwjcmw  路  4Comments

nam-co picture nam-co  路  4Comments

Generalomosco picture Generalomosco  路  3Comments