我的fancybox出现问题,该问题会在页面加载时自动打开。单击关闭按钮后,fancybox再次打开。
能帮我一下吗?
<script>
jQuery(function($){
$(".popup-wrapper").fancybox({
'padding': '0',
'max-width': '50%',
'max-height': '50%',
'autoSize': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
});
$(".popup-wrapper").trigger('click');
});
</script>
css:
.popup-wrapper {
display: none;
width: 50%;
height: auto;
img {
width: 80%;
height: auto;
}
}
php和html
<?php $args = array('post_type' => 'popup', 'showposts' => 5,);
$the_query = new WP_Query( $args ); ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post();
$meta = get_post_meta( $post->ID, 'popup_details', true ); ?>
<?php if (is_array($meta) && $meta['displayPopup'] === '1') { ?>
<div class="popup-wrapper col-12 col-xl-12">
<?php the_post_thumbnail(); ?>
</div><!-- .popup-wrapper -->
<?php };
endwhile;
wp_reset_postdata(); ?>
更新 仅当我单击关闭按钮时,问题才会出现。当我按下ESC按钮或单击黑色背景时,该框将关闭,没有问题。
答案 0 :(得分:0)
我通过在代码中添加preventDefault
来解决了这个问题,现在它可以工作了。希望这对以后的人有所帮助。
jQuery(function($){
$(".popup-wrapper").fancybox({
'padding': '0',
'autoSize': true,
'transitionIn': 'fade',
'transitionOut': 'fade',
});
$(".popup-wrapper").trigger('click');
$(document).find('.fancybox-close-small').on('click', function(e) {
e.preventDefault();
self.close(e);
});
});