如何创建以HTML格式播放youtube视频的按钮?

时间:2018-12-03 16:53:25

标签: html css iframe youtube youtube-iframe-api

我有以下代码。我的按钮可以正常工作,但是我不知道如何使该功能起作用。

我的目标是创建一个按钮,单击该按钮可打开youtube视频的iframe /使其可见。

<body>

<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top">TAKE YOUR MARK</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
  <p><button class="w3-center center transparent_btn" 
onclick="play1()">go</button></p>
  </div>
</div>
</body>

<script>
function play1() { 
    <iframe width="560" height="315" src="https://www.youtube.com/embed/AkFs3YzxN_E" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  }

2 个答案:

答案 0 :(得分:1)

您需要具有可以插入iframe的元素。

<body>

<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top">TAKE YOUR MARK</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
  <p><button class="w3-center center transparent_btn" 
onclick="play1()">go</button></p>
  <div id="youtube-frame"></div>
  </div>
</div>
</body>

<script>
function play1() { 
    var frame = document.getElementById("youtube-frame");
    frame.innerHTML += "<iframe width='560' height='315' src='https://www.youtube.com/embed/AkFs3YzxN_E' frameborder='0' allow='accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture' allowfullscreen></iframe>";
  }
</script>

答案 1 :(得分:0)

尽管youtube提供了一个控制播放器的API,但我会保持简单。 首先,在您的体内添加一个div并为其指定一个ID。 您的play1()函数应如下所示:

    function play1(){
      var player = '<iframe width="560" height="315" 
      src="https://www.youtube.com/embed/AkFs3YzxN_E" frameborder="0" 
      allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in- 
      picture" allowfullscreen></iframe>';
      document.getElementById('ID').innerHtml = player;
    }