彩盒中的多个视频?第一次加载但其他加载失败

时间:2012-08-06 15:33:38

标签: jquery colorbox

我正在使用Colorbox'rel函数'在1个灯箱中显示本地图像和youTube视频的混合物,我已经设法达到了一定程度。问题是我需要插入多个视频,但是当我这样做时,我无法在彩色框中加载多个视频,并显示“请求不成功:错误”。我已将视频设置为在iframe中显示设置的宽度和高度,并且无法理解为什么1可以工作但不超过1.(如果我切换它们显示的顺序,首先显示的那个总是显示但没有其他,所以我知道源视频没问题。

这是我的代码:

<script>
    jQuery(document).ready(function () {
        jQuery('a.gallery1').colorbox({ rel:'group1' });
        jQuery('a.gallery2').colorbox({ rel:'group2' });
        jQuery('a.gallery3').colorbox({ rel:'group3' });
        jQuery('a.gallery4').colorbox({ rel:'group4' });
        jQuery('a.gallery5').colorbox({ rel:'group5' });
        jQuery('a.gallery6').colorbox({ rel:'group6' });
        jQuery('a.gallery7').colorbox({ rel:'group7' });
        jQuery('a.gallery8').colorbox({ rel:'group8' });
        jQuery('a.gallery9').colorbox({ rel:'group9' });
        jQuery('a.gallery10').colorbox({ rel:'group10' });
        jQuery('#video').colorbox({iframe:true, innerWidth:493, innerHeight:370});

    }); 
</script>

<a class="gallery1" href="images/content/cosmos1Full.jpg" title="Salvatore Arancio, title of work, year">
                    <img src="images/content/cosmos1.jpg"  alt="cosmos1" width="484" height="370" />
                    <a class="gallery1" href="images/content/ohoopee2.jpg" title="Salvatore Arancio, title of work, year">
                    <a class="gallery1" href="images/content/ohoopee3.jpg" title="Salvatore Arancio, title of work, year">
                    <a class='gallery1' href="http://vimeo.com/moogaloop.swf?clip_id=29956704&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=00ADEF&fullscreen=1&" title="Ed Atkins, 'Death Mask 3', 2011. Extract." id="video">
                    <a class='gallery1' href="http://www.youtube.com/v/rhCssm8BMNM?version=3" title="A Tumour (Ed Atkins)" id="video"></a>

1 个答案:

答案 0 :(得分:0)

我的猜测是您正在重复使用视频ID,即使HTML规范要求ID是唯一的。如果您计划将其应用于多个元素,请将其更改为类。