点击图片,播放视频

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="author" content="">
        <title>study</title>
        <style type="text/css">
            *{margin: 0;padding:0;}
            .index-vedio{width: 830px;height: 460px;margin: 50px auto;}
            .index-vedio img{width: 100%;height: 100%;}
        </style>
    </head>
    <body>
        <div class="index-vedio"><img src="./conter1.jpg"></div>
        <script>
              //视频播放
              var indexVedio = document.querySelector(".index-vedio");
              indexVedio.onclick = function(){
                indexVedio.innerHTML = "<iframe width=100% height='460' src='https://www.youtube.com/embed/aeyuLu9t0YE?rel=0&autoplay=1' frameborder='0' allow='autoplay; encrypted-media' allowfullscreen></iframe>";
              }
        </script>
    </body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_37815596/article/details/81870513