admin管理员组文章数量:1344675
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
2 Answers
Reset to default 9I 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
本文标签: javascriptiDangerous Swiper not working when inside a div set hidden displaynoneStack Overflow
版权声明:本文标题:javascript - iDangero.us Swiper not working when inside a div set hidden display:none - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743729069a2528870.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论