how to hide the download option in html5 video tag.
I put controlsList='nodownload'
in the video tag and its fine but the download button only shows in when the client open the video link in Gionee Mobile phone
.
Please help, thank you
how to hide the download option in html5 video tag.
I put controlsList='nodownload'
in the video tag and its fine but the download button only shows in when the client open the video link in Gionee Mobile phone
.
Please help, thank you
You can hide it via CSS. Code taken from here: https://www.quora.com/How-do-I-disable-the-download-button-from-the-controls-in-HTML5-video-for-Google-Chrome
CSS
video::-internal-media-controls-download-button {
display:none !important;
}
video::-webkit-media-controls-enclosure {
overflow:hidden !important;
}
video::-webkit-media-controls-panel {
width: calc(100% + 30px) !important; /* Adjust as needed */
}
EDIT: if you absolutely must hide the download button, then maybe you could do a customized video player. Mozilla has a nice article on how to do it and style it. This should work for any browser (but you might want to check first if your particular browser supports all methods involved).
EDIT2: There are cutomized players out there already. I found OzPlayer as an example.