我正在构建一个供个人使用的 html 文件,该文件应该向我展示一些网站,其中一个就是这个 Clappr 播放器。
由于这将用于 Chromium kiosk 模式,因此我需要它来自动播放。
我不拥有上面提供的链接的页面。
到目前为止,我已经尝试使用 javascript 模拟点击事件,但它似乎不起作用。下面是我缩短的 html 文件。关于如何让这个播放器开始自动播放的任何建议?
<!DOCTYPE html>
<html>
<head>
<style>
#webcam {
border: none;
}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<td>
<iframe id="webcam" src="https://player.livespotting.tv/jwp-weather.html?alias=PS_98e04&station=38" scrolling="no" width="512" height="384">
<script type="text/javascript">
var elem = document.getElementById('webcam');
triggerEvent( elem, 'click' );
function triggerEvent( elem, event ) {
var clickEvent = new Event( event ); // Create the event.
elem.dispatchEvent( clickEvent ); // Dispatch the event.
}
</script>
</iframe>
</td>
<td>
<div>
<iframe id="google" src="https://www.google.com/" scrolling="no" width="512" height="384">
</iframe>
</div>
</td>
</tr>
</table>
</body>
</html>
´´´
料青山看我应如是
慕婉清6462132
相关分类