我想在我的网站上显示几个嵌入元素。他们显示了一个rtsp文件(视频),因此当我加载很多文件时,网站显然非常慢。
我以两种不同的方式做到了,但没有一个没有给我一个好的结果:
<embed id="video" class="video" type="application/x-vlc-plugin" name="player" width="100%" height="100%" autoplay="yes" loop="yes" allowfullscreen="allowfullscreen" fullscreen target="rtsp://xxxxxxxx"></embed>
function cambiarCanal() {
var objeto = '<embed id="video" type="application/x-vlc-plugin" name="player" width="100%" height="100%" autoplay="yes" loop="yes" target="'+canales[3]+'"></embed>';
$("#video").replaceWith(objeto);
/* cambiar cada 20s el canal del video */
var t = setTimeout(function() {
cambiarCanal();
}, 20000);
}
我尝试使用'embed'和'object'元素,结果相同。
那么,有没有办法加载二十个嵌入元素,并像一个旋转木马一样显示一个又一个没有缓慢?也许知道下一个元素是否已被加载并将其更改为当前元素?