Hide native play button for video in google chrome

前端 未结 1 1592
小鲜肉
小鲜肉 2021-01-03 02:38

I\'m trying to hide the default play button in the center of my video. I have a custom play button but the native play button is displaying underneath it on tablet and mobil

相关标签:
1条回答
  • 2021-01-03 03:07

    Took a bit of searching, but found it in the comments here and confirmed it works on Chrome for Android.

    video::-webkit-media-controls-overlay-play-button {
      display: none;
    }
    
    0 讨论(0)
提交回复
热议问题