问问题
6944 次
1 回答
13
您可以添加controlsList="nodownload"
到video
元素,下载按钮将在 Chrome 中消失。
请记住,如果他们真的想要,人们仍然可以下载视频。另一个预防措施是禁用右键单击视频元素:
<ReactPlayer
// Disable download button
config={{ file: { attributes: { controlsList: 'nodownload' } } }}
// Disable right click
onContextMenu={e => e.preventDefault()}
// Your props
url="https://media.w3.org/2010/05/sintel/trailer_hd.mp4"
className="react-player"
controls
width="100%"
height="100%"
/>
于 2018-09-18T15:26:36.830 回答