在这里我嵌入了我的代码。实际上我想在使用 java 脚本单击 html 中的按钮时将视频作为弹出窗口播放。此代码有效,但视频仍在后台播放。
function myFunction() {
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
popup.play(true)
}
.popup .popuptext {
visibility: hidden;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
.popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
<body style="text-align:center">
<div class="popup" onclick="myFunction()"><button>Preview</button>
<video class="popuptext" id="myPopup" style="width:800px;">
<source src="dolby-atmos-intro.mp4" type="video/mp4">
</video>
</div>
</body>
原文由 Ridhik 发布,翻译遵循 CC BY-SA 4.0 许可协议
切换视频播放/暂停。