0
我正在建設一個網站,並在其中一個頁面上展示一些圖像。我認爲prettyPhoto看起來不錯,並決定使用它。在PrettyPhoto中顯示多個圖像
現在我在引導中有一個方框'box',共有2個col-md-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顯示每個圖像的多個圖像(畫廊)?任何幫助,將不勝感激。