Hide Native Android HTML5 Video Play Button in CSS

前端 未结 1 835
花落未央
花落未央 2020-12-18 13:10

On iOS I can simply remove the play button by doing

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

How

1条回答
  •  时光说笑
    2020-12-18 13:54

    For anyone who comes across this question, an alternative solution to the native one is to simply not include android-webview-video-poster: in your Content Security Policy. This will block the image from ever loading in the first place. Not sure if this is considered a hackish solution, but it seems to work for me.

    0 讨论(0)
提交回复
热议问题