简体   繁体   English

如何在 wordpress 自定义主题中实现 photoswipe?

[英]How to implement photoswipe into wordpress custom theme?

I'm trying to implement photoswipe into my site but I'm not sure how to go about it for a wordpress site..我正在尝试在我的网站中实施 photoswipe,但我不确定如何为 wordpress 网站了解 go

I'm using acf repeater to display all images in a grid.我正在使用 acf repeater 在网格中显示所有图像。 I'd like to display the photoswipe gallery when an image is clicked.单击图像时,我想显示照片滑动库。

I've read the documentation for photoswipe, but I don't understand how to use it with a repeater field.我已经阅读了 photoswipe 的文档,但我不明白如何将它与中继器字段一起使用。

Any help would be appreciated..任何帮助,将不胜感激..

In my opinion, sack off photoswipe and use lightgallery .在我看来,解雇 photoswipe 并使用lightgallery

Photoswipe is bloated and lightgallery does the same shiz with sweeter options. Photoswipe 是臃肿的,而 lightgallery 做同样的事情,但有更甜的选择。

If your outputting your repeater field images grid in semantic fashion then this will do the trick...如果您以语义方式输出中继器字段图像网格,那么这将解决问题......

See jsfiddle example.请参阅jsfiddle示例。

 $('.grid').lightGallery({ selector: '.lightgallery' });
 .grid { width: 100%; height: 100%; } FIGURE { margin: 0; width: 25%; display: block; float: left; position: relative; overflow: hidden; } FIGURE A { display: block; width: 100%; } FIGURE A::after { content: ''; display: block; padding-top: 100%; } FIGURE A IMG { height: 100%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
 <div class="grid"> <figure> <a href="https://i.imgur.com/q5Y5RCH.png" class="lightgallery"> <img src="https://i.imgur.com/q5Y5RCH.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/8HjXPXD.png" class="lightgallery"> <img src="https://i.imgur.com/8HjXPXD.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/vUDcfcy.png" class="lightgallery"> <img src="https://i.imgur.com/vUDcfcy.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/okTDHas.png" class="lightgallery"> <img src="https://i.imgur.com/okTDHas.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/x7ZYW4i.png" class="lightgallery"> <img src="https://i.imgur.com/x7ZYW4i.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/EYTCssm.png" class="lightgallery"> <img src="https://i.imgur.com/EYTCssm.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/3sAFPmL.png" class="lightgallery"> <img src="https://i.imgur.com/3sAFPmL.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/IqLrd0o.png" class="lightgallery"> <img src="https://i.imgur.com/IqLrd0o.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/6JplNl6.png" class="lightgallery"> <img src="https://i.imgur.com/6JplNl6.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/6X5GKWJ.png" class="lightgallery"> <img src="https://i.imgur.com/6X5GKWJ.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/SefTwI1.png" class="lightgallery"> <img src="https://i.imgur.com/SefTwI1.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/qBmDrTU.png" class="lightgallery"> <img src="https://i.imgur.com/qBmDrTU.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/x7ZYW4i.png" class="lightgallery"> <img src="https://i.imgur.com/x7ZYW4i.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/EYTCssm.png" class="lightgallery"> <img src="https://i.imgur.com/EYTCssm.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/3sAFPmL.png" class="lightgallery"> <img src="https://i.imgur.com/3sAFPmL.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/IqLrd0o.png" class="lightgallery"> <img src="https://i.imgur.com/IqLrd0o.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/6JplNl6.png" class="lightgallery"> <img src="https://i.imgur.com/6JplNl6.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/6X5GKWJ.png" class="lightgallery"> <img src="https://i.imgur.com/6X5GKWJ.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/SefTwI1.png" class="lightgallery"> <img src="https://i.imgur.com/SefTwI1.png" alt="" /> </a> </figure> <figure> <a href="https://i.imgur.com/qBmDrTU.png" class="lightgallery"> <img src="https://i.imgur.com/qBmDrTU.png" alt="" /> </a> </figure> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.7.0/css/lightgallery.min.css" rel="stylesheet" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.7.0/js/lightgallery-all.min.js"></script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM