gpt4 book ai didi

jQuery/Colorbox - 创建一个单独的链接来打开颜色框?

转载 作者:行者123 更新时间:2023-12-03 22:34:43 24 4
gpt4 key购买 nike

我正在尝试从其余颜色框图像外部的链接打开 jQuery Colorbox。因此,所有示例如下所示:

<a href="image1.png" rel="group1"><img src="thumb1.png" /></a>
<a href="image2.png" rel="group1"><img src="thumb2.png" /></a>
<script>$("a[rel='group1']").colorbox();</script>

好的,没问题,但我还需要从单独的链接打开该颜色框:

<a href="?"> this link should also open the colorbox </a>

我必须把什么放在哪里才能做到这一点?所有 colorbox 示例仅显示第一个代码块中的内容,我不是 jQuery 专家。

最佳答案

这是一个适用于我的项目的类似的东西。

HTML

//I "display:none" the images gallery to hide them...
<div style="display:none;">
<a href="image1.jpg" rel="example1">Grouped Photo 1</a>
<a href="image2.jpg" rel="example2">Grouped Photo 2</a>
<a href="image3.jpg" rel="example3">Grouped Photo 3</a>
</div>

//...then when I click on this JPG image the group of images (above) appear in a colorbox
<img src="circle1.jpg" width="147" height="149" alt="circle" class="circle1" />

这是 JQUERY

$(document).ready(function(){

//when i "click" on the image with a class of "circle1" it opens the "example1" group
$('.circle1').click(function() {
$("a[rel='example1']").colorbox({open:true});
});

});

关于jQuery/Colorbox - 创建一个单独的链接来打开颜色框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1937520/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com