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

javascript - iDangero.us Swiper not working when inside a div set hidden display:none - Stack Overflow

programmeradmin1浏览0评论

I want the swiper gallery to show after clicking on a "Show the gallery" link. But it looks like Swiper is not working properly if initialized inside a hidden div.

Here is my page:

<div>
<a href=“javascript:;” onclick=“toggle_visibility('gallery');”><img src=“img.jpg” alt=“Click to open the gallery”></a>
</div>

<div id=“gallery” style:“display:none”>
<!— Swiper —>
<div id=“slide-event” class=“swiper-container swiper-container-event”>
<div class=“swiper-wrapper”>
…
</div>
<!— Add Arrows —>
<div id=“show-hide” class=“swiper-button-next”></div>
<div id=“show-hide” class=“swiper-button-prev”></div>
</div>
<!— End Swiper —>
</div>

<script src="js/swiper.jquery.js"></script>

This workaround doesn't work for me:

function reinitSwiper(swiper) {
  setTimeout(function () {
   swiper.reInit();
  }, 500);
}

Maybe there is another a javascript trick? Any suggestion?

I want the swiper gallery to show after clicking on a "Show the gallery" link. But it looks like Swiper is not working properly if initialized inside a hidden div.

Here is my page:

<div>
<a href=“javascript:;” onclick=“toggle_visibility('gallery');”><img src=“img.jpg” alt=“Click to open the gallery”></a>
</div>

<div id=“gallery” style:“display:none”>
<!— Swiper —>
<div id=“slide-event” class=“swiper-container swiper-container-event”>
<div class=“swiper-wrapper”>
…
</div>
<!— Add Arrows —>
<div id=“show-hide” class=“swiper-button-next”></div>
<div id=“show-hide” class=“swiper-button-prev”></div>
</div>
<!— End Swiper —>
</div>

<script src="js/swiper.jquery.js"></script>

This workaround doesn't work for me:

function reinitSwiper(swiper) {
  setTimeout(function () {
   swiper.reInit();
  }, 500);
}

Maybe there is another a javascript trick? Any suggestion?

Share Improve this question asked Jan 13, 2017 at 15:48 Frédéric DelaloireFrédéric Delaloire 1231 silver badge8 bronze badges 3
  • I've tried with something like this: $('a').on('click', function reinitSwiper(swiper) { setTimeout(function () { swiper.reInit(); }, 500); }); It doesn't work. – Frédéric Delaloire Commented Jan 13, 2017 at 16:10
  • Well it is easier than this. Just add "observer: true, observeParents: true," to the Swiper initialization. – Frédéric Delaloire Commented Jan 13, 2017 at 20:52
  • It works for me when I add as Frédéric Delaloire said. Thank you. – May Phyu Commented Jan 16, 2017 at 5:17
Add a ment  | 

2 Answers 2

Reset to default 9

I found out these listeners:

observer: true

observer Set to true to enable Mutation Observer on Swiper and its elements. In this case Swiper will be updated (reinitialized) each time if you change its style (like hide/show) or modify its child elements (like adding/removing slides)

observeParents: true

observeParents Set to true if you also need to watch Mutations for Swiper parent elements

try to call the method

swiper.update();

when you display the slider

发布评论

评论列表(0)

  1. 暂无评论