0

我需要隐藏下图中圈出的图标吗?我该如何隐藏它?我正在使用react-player. 在此处输入图像描述

请检查此代码框 点击这里

<ReactPlayer
      url="https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8"
      playing={true}
      volume={1}
      width="100%"
      height="100%"
      controls
/>
4

1 回答 1

0

HTML5<Video />标签支持通过disablepictureinpicture属性禁用此功能。这仍然是一项实验性功能,可能不适用于所有浏览器。

disablePictureInPicture通过 ReactPlayer 的配置传递html 属性。如果画中画控件没有消失,请尝试设置controlsList: 'nodownload'

const config = {
  attributes: {
    disablePictureInPicture: true,
    controlsList: 'nodownload'
  }
};

const App = () => (
  <div style={styles}>
    <ReactPlayer
      url="https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8"
      playing={true}
      volume={1}
      width="100%"
      height="100%"
      config={config}
      controls
    />
    <h2>Start editing to see some magic happen {'\u2728'}</h2>
  </div>
);
于 2021-03-31T03:19:29.127 回答