Okay
  Public Ticket #1131425
Video Mobile
Closed

Comments

  •  2
    julien3z started the conversation

    Hi, 

    I've got an issue on mobile with header video and about section video that can't be played. As you can see, there's the player logo  (triangle in a circle) but it is not clickable.

    Can you please help me ? 

    Thanks

  •  2,010
    Ocean replied

    Hello,

    HTML5 video not support and not play on mobile devices, It's auto use background image to instead video on mobile.

    Please use this css code to hide play button, 

    You can add css code here http://www.awesomescreenshot.com/image/431375/60a65bbd73398f66ec983fe267a49737

    *::-webkit-media-controls-panel {
      display: none!important;
     -webkit-appearance: none;
    }
    /* Old shadow dom for play button */
    *::--webkit-media-controls-play-button {
      display: none!important;
      -webkit-appearance: none;
    }
    /* New shadow dom for play button */
    /* This one works */
    *::-webkit-media-controls-start-playback-button {
      display: none!important;
      -webkit-appearance: none;
    }
    

    Thank you