0

我正在使用 Masonry 来切换 div 的高度和宽度。我在扩展 div 中有链接,但我不知道如何制作它,以便仅在单击图像而不是 div 内的任何位置时切换高度/宽度。

jQuery:

var $container = $('.masonry').masonry({
    columnWidth: 145,
    itemSelector: '.item',
    "isFitWidth": true
});
$container.on('click', '.item-content', function(){
    $(this).parent('.item').toggleClass('is-expanded');
    $container.masonry();
});

内容循环(WordPress):

<div class="masonry">
    <?php while ($cpts->have_posts()) : $cpts->the_post();
        echo '<li class="item ';
        $cats = get_the_terms($post->ID, 'item_category');
        foreach($cats as $cat){
            echo 'ff-item-type-'.$cat->term_id.' '; 
        }
        echo '">';
        ?>
        <div class="item-content">
            <p class="filter-img" data-id="<?php echo $post->ID; ?>"><?php the_post_thumbnail(); ?></p>
            <?php echo wp_get_attachment_image(get_field('website_image'), array(135,135), false, array('class'=>'site-img')); ?>
            <h4><?php the_title(); ?></h4>
            <?php the_content(); ?>
        </div>
        </li>
    <? endwhile; ?>
</div>
4

2 回答 2

0

尝试申请pointer-events:nonediv。引用 MDN:

没有任何

元素永远不是鼠标事件的目标;但是,如果这些后代将指针事件设置为其他值,则鼠标事件可能会针对其后代元素。在这些情况下,鼠标事件将在事件捕获/冒泡阶段期间适当地触发此父元素上的事件侦听器。

更新

假设容器 div 具有类.masonry,请在您的 css 中添加以下内容

.masonry{
 pointer-events:none;
}

通过这样做,将不会触发以容器 div 作为目标的点击事件,只有可点击的子元素才会触发点击事件......

于 2014-04-22T18:06:38.710 回答
0

而不是$container.on('click')JS的部分,我用这个:

$('.item-content .filter-img img').on('click', function(){
    $(this).closest('.item').toggleClass('is-expanded');
    $container.masonry();
});  

这样,它在点击事件中使用正确的项目,然后将类添加到正确的 div。

于 2014-04-23T18:57:35.733 回答