我有3个主要图像正在显示。我希望每个图像,当点击,弹出自己的个人画廊。如果每个画廊有5个图像,当点击主要图像,它应该显示5等1目前当每个主要照片被点击画廊弹出显示15个图像1-所以它包括所有3个画廊的所有图像。
<div class="row">
<div class="gallery">
<a href="img/gallery1/1.jpg" >
<img src="img/MainImage1.jpg">
<div class="caption">Gallery for image 1</div> </a>
<a href="img/gallery1/2.jpg" ></a>
<a href="img/gallery1/3.jpg" ></a>
<a href="img/gallery1/4.jpg" ></a>
<a href="img/gallery1/5.jpg" ></a>
</div>
<div class="gallery">
<a href="img/gallery2/1.jpg" >
<img src="img/MainImage2.jpg">
<div class="caption">Gallery for image 2</div></a>
<a href="img/gallery2/2.jpg" ></a>
<a href="img/gallery2/3.jpg" ></a>
<a href="img/gallery2/4.jpg" ></a>
<a href="img/gallery2/5.jpg" ></a>
</div>
<div class="gallery">
<a href="img/gallery3/1.jpg" >
<img src="img/MainImage3.jpg">
<div class="caption">Gallery for image 3</div></a>
<a href="img/gallery3/2.jpg" ></a>
<a href="img/gallery3/3.jpg" ></a>
<a href="img/gallery3/4.jpg" ></a>
<a href="img/gallery3/5.jpg" ></a>
</div>
我的JS:
$('.gallery').each(function() { // the containers for all your galleries
$(this).magnificPopup({
delegate: 'a',
type: 'image',
tLoading: 'Loading image #%curr%...',
mainClass: 'mfp-img-mobile',
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
},
image: {
tError: '<a href="%url%">The image #%curr%</a> could not be loaded.'
}
});
我在文档中读到了这一点:
多个画廊
要在一个页面上拥有多个库,需要为每个库创建一个新的放大弹出窗口示例。
<div class="gallery">
<a href="path-to-image.jpg">Open image 1 (gallery #1)</a>
<a href="path-to-image.jpg">Open image 2 (gallery #1)</a>
</div>
<div class="gallery">
<a href="path-to-image.jpg">Open image 1 (gallery #2)</a>
<a href="path-to-image.jpg">Open image 2 (gallery #2)</a>
<a href="http://vimeo.com/123123" class="mfp-iframe">Open video (gallery #2). Class mfp-iframe forces "iframe" content type on this item.</a>
</div>
日本:
$('.gallery').each(function() { // the containers for all your galleries
$(this).magnificPopup({
delegate: 'a', // the selector for gallery item
type: 'image',
gallery: {
enabled:true
}
});
});
但这一点我不太清楚。你如何区分画廊?或者它应该知道从哪里自动拉?
我需要调用一个“popup-gallery 2”吗?然后我需要一个单独的javascript示例来控制popup-gallery 2等等吗?
或者是有什么我错过了吗?是我所要求的可能使用这个插件或有一个更好的方式来完成这一点?
感谢您阅读所有这些-我希望它是明确的我在问什么。
2条答案
按热度按时间juzqafwq1#
问得好,这是一个有点棘手的问题,因为文档在多个图库中没有那么深入。
我是这么想的:将每个图库放入gallery-link div中,使用jQuery find()方法打开所选图库链接的子图库,然后初始化所有图库的容器,见以下代码:超文本:
JavaScript语言:
工作示例:祝你好运!
kb5ga3dv2#
我的工作也遇到了同样的问题。下面是工作正常的答案。
只要使每个画廊容器是唯一的,然后选择类和应用弹出窗口。