gpt4 book ai didi

php - Fancybox:使用背景图片

转载 作者:太空宇宙 更新时间:2023-11-04 04:41:33 25 4
gpt4 key购买 nike

我在使用照片部分的 fancybox 时遇到了一些麻烦。

当您点击其中一张图片时,它会加载与页面上相同的大小(图片实际上要大得多)并且还会从页面中删除 div。

我想将 div 的背景图片以全尺寸加载到 fancybox 中。

<div class="main-photo fancybox" rel="group" style="background-image:url('<?php echo $photo; ?>');">
<a href="<?php echo the_sub_field('photo'); ?>">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/picture-of-health-photo-frame.png" height="240" width="360" />
</a>
</div>

链接中的 img 实际上是相框,我不想将其包含在 fancybox 中。

最佳答案

你需要设置class="fancybox"到主播<a>标记,而不是 <div>标记为:

<div class="main-photo" rel="group" style="background-image:url('<?php echo $photo; ?>');">
<a class="fancybox" href="<?php echo the_sub_field('photo'); ?>">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/picture-of-health-photo-frame.png" height="240" width="360" />
</a>
</div>

关于php - Fancybox:使用背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15364784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com