我正在建立一个网站,其中一个页面是一个展示一些图像的部分。我认为prettyPhoto好看,并决定使用它。
现在我在引导程序中有一个方形'盒子',有2行第4行(总共6行)。每个图像都有一个悬停状态,在悬停时会发生变化,显示一个要点击的图标,然后从那里打开prettyPhoto。
我不确定如何在给出文档的情况下将多个图像添加到prettyPhoto,但是在他们的文档中有一些示例,我只是没有运气实现它们。
这是我的代码
HTML
<div class="row centered">
<div class="col-md-4 portfolio-item web-design">
<div class="he-wrap tpl6">
<img src="images/portfolio-2/crate-of-california.jpg" height="450px" width="600px" class="img-responsive" alt="">
<div class="he-view">
<div class="bg a0" data-animate="fadeIn">
<h3 class="a1" data-animate="fadeInDown">Crate of California</h3>
<a data-rel="prettyPhoto[gallery1]" href="images/portfolio-2/crate-of-california.jpg" width="600" height="486" class="dmbutton a2" data-animate="fadeInUp"><i class="fa fa-search"></i></a>
</div><!-- he bg -->
</div><!-- he view -->
</div><!-- he wrap -->
</div>
JS
(function($) {
// prettyPhoto
jQuery(document).ready(function(){
jQuery('a[data-gal]').each(function() {
jQuery(this).attr('rel', jQuery(this).data('gal'));
});
jQuery("a[data-rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square',slideshow:false,overlay_gallery: false,social_tools:false,deeplinking:false,allow_resize:true});
});
})(jQuery);
如果需要,我可以发布css,但大部分都与问题无关。
有没有人知道如何使用prettyPhoto为每张图片显示多张图片(图库)?任何帮助,将不胜感激。
答案 0 :(得分:0)
所以我能够理解这一点,网站上的文档根本不是很好,我花了几个小时才弄明白,所以希望有人可以使用它。
基本上,我试图为2x3行中的6个图像中的每个图像显示图像库。代码最终成了;
<强> HTML 强>
<div class="col-md-4 portfolio-item web-design">
<div class="he-wrap tpl6">
<img src="images/portfolio-2/kenneth-cole.jpg" height="450px" width="600px" class="img-responsive" alt="">
<div class="he-view">
<div class="bg a0" data-animate="fadeIn">
<h3 class="a1" data-animate="fadeInDown">Kenneth Cole</h3>
<a rel="prettyPhoto[gallery2]" href="images/portfolio-2/kenneth-cole.jpg" class="dmbutton a2" data-animate="fadeInUp"><i class="fa fa-search"></i></a>
<a href="images/portfolio-images/kennethcole2.png" class="lightbox-image lightbox-hide" rel="prettyPhoto[gallery2]" title="Another Title 2"></a>
<a href="images/portfolio-images/kennethcole3.png" class="lightbox-image lightbox-hide" rel="prettyPhoto[gallery2]" title="Another Title 2"></a>
<a href="images/portfolio-images/kennethcole4.png" class="lightbox-image lightbox-hide" rel="prettyPhoto[gallery2]" title="Another Title 2"></a>
</div><!-- he bg -->
</div><!-- he view -->
</div><!-- he wrap -->
</div>
.....
<!-- beneath your main content, before your closing body tag
the social tools (twitter and facebook sharing) are in there by default, so this takes it off -->
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({social_tools:''});
});
</script>
</body>
基本上你只需要确保你'触发'是rel=prettyPhoto
,你可以拥有每个div的多个。一旦您显示多个图像,prettyPhoto就有助手和按钮。