H5视频播放以及下载!

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title></title>
</head>
<style>
    body{
        background: black;
    }
    .aaa{
        color:white;font-size: 22px;
        display: block;width: 100%;height:40px;
        background:gray;text-align: center;line-height: 40px;
        letter-spacing: 5px;text-decoration: none;
    }
</style>
<body>
    <video style="width: 100%;height:400px;" controls="controls" autoplay="autoplay">
          <source src="img/A.mp4" type="video/mp4" />
    </video> 
    <a class="aaa" href="img/A.mp4" download="w3logo">下载</a>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/tt22761/article/details/82587332