1

我正在使用 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>
4

1 回答 1

0

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

于 2012-08-07T15:42:09.540 回答