Video Download
by Thunderbolt
HTML
<a href="javascript:
(function() {
var src = document.getElementsByTagName('video').item(0).src;
var fileName = prompt('Choose a filename:'); + '.mp4';
var a = document.createElement('a');
a.href = src;
a.download = fileName;
console.log(a);
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
})();">
Video Direktdownload</a>
CSS
a {
display: block;
height: 7em;
width: 300px;
line-height: 6em;
background-color: #080000;
text-decoration: none;
color: #FFFFFF;
text-align: center;
}
a:after{
content: "Ziehe mich in deine Lesezeichenleiste!";
position: absolute;
margin-left: -200px;
width: 300px;
margin-top: 1em;
text-align: center;
color: #FFFFFF;
}