我正在尝试使用点击按钮后显示的视频进行模态处理。当我尝试从硬盘放入视频时,声音会在网站启动时开始。现在,当我从youtube放视频时,它根本无法工作... 我从不同地方获取了代码,并将它们放在一起,因为我是初学者...请帮助!
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
<h2>Modal Example</h2>
<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<iframe width="640" height="480" controls="controls" type="video/mp4" autoplay="false" preload="none"><video width="1000" height="500" src="https://www.youtube.com/watch?v=uOsGx25HvmI" frameborder="0"></video></iframe>
</div>
</div>
答案 0 :(得分:0)
嵌入视频
- 在计算机上,转到您要嵌入的YouTube视频。
- 在视频下,单击“共享共享”。
- 点击嵌入。
- 从出现的框中复制HTML代码。
- 将代码粘贴到您的博客或网站HTML中。
您会注意到 URL 必须有所不同。代替:
https://www.youtube.com/watch?v=uOsGx25HvmI
它将是:
https://www.youtube.com/embed/uOsGx25HvmI
完整代码为:
<iframe width="560" height="315" src="https://www.youtube.com/embed/uOsGx25HvmI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
关于页面加载时视频播放声音的问题,您正在尝试避免autoplay
做autoplay="false"
。来自MDN docs:
要禁用视频自动播放,
autoplay="false"
将不起作用;如果该属性完全位于<video>
标签中,则视频将自动播放。要删除自动播放属性,需要将其完全删除。