最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Thumbnails disappears after click on them, FancyBox - Stack Overflow

programmeradmin0浏览0评论

I created FancyBox gallery. But now when I click on thumbnails it shows up image galery as planned. But in background I can see that all thumbnails are disappearing one by one. After F5 or page reload all thumbnails are back.

My code:

    <a class="fancybox" data-fancybox-group="gallery" title=""> <%=  image_tag('s_1.jpg') %></a>
    <a class="fancybox"  data-fancybox-group="gallery" title=""><%= image_tag('s_2.jpg') %></a>
    <a class="fancybox" data-fancybox-group="gallery" title=""><%= image_tag('s_3.jpg') %></a>
   <a class="fancybox"  data-fancybox-group="gallery" title=""> <%= image_tag('s_4.jpg') %></a>
   <a class="fancybox" data-fancybox-group="gallery"  title=""> <%= image_tag('s_5.jpg') %></a>

In application.js

$(document).ready(function() {
    $(".fancybox").fancybox();
});

Example you can see here

I created FancyBox gallery. But now when I click on thumbnails it shows up image galery as planned. But in background I can see that all thumbnails are disappearing one by one. After F5 or page reload all thumbnails are back.

My code:

    <a class="fancybox" data-fancybox-group="gallery" title=""> <%=  image_tag('s_1.jpg') %></a>
    <a class="fancybox"  data-fancybox-group="gallery" title=""><%= image_tag('s_2.jpg') %></a>
    <a class="fancybox" data-fancybox-group="gallery" title=""><%= image_tag('s_3.jpg') %></a>
   <a class="fancybox"  data-fancybox-group="gallery" title=""> <%= image_tag('s_4.jpg') %></a>
   <a class="fancybox" data-fancybox-group="gallery"  title=""> <%= image_tag('s_5.jpg') %></a>

In application.js

$(document).ready(function() {
    $(".fancybox").fancybox();
});

Example you can see here

Share Improve this question asked May 28, 2014 at 10:41 EdgarsEdgars 1,0531 gold badge22 silver badges58 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 16

You need to have an image source defined in the <a>-tag. Even if you don´t have different size images for thumbnail and gallery view you still need to define it twice, like so:

<a class="fancybox" href="image_source" data-fancybox-group="gallery" title=""><img src="image_source" alt="" /></a>
发布评论

评论列表(0)

  1. 暂无评论