jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了砌体和jQuery内容切换(slideDown,show等)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在建立一个博客,我只希望使用Masonry在一个排列整齐的网格中显示每篇博文的相关图像.当用户点击图像时,博客文本内容显示在图像下方(在同一页面上).由于某种原因,当我添加点击功能时,隐藏的内容将不会显示.我不熟悉on()事件处理程序(因为Masonry而需要)并且可能有一些我不知道的东西.发生的事情是我在DOM中看到元素得到显示:阻止,但它们没有出现. @H_301_7@

@H_301_7@HTML

@H_301_7@

<?PHP get_header(); ?>
        <div id="posts" class="clearfix">
        <?PHP if (have_posts()) : while (have_posts()) : the_post(); ?>
            <div class="post">
                <a class="view" href="#"><?PHP the_post_thumbnail(465,999) ?></a>
                <div class="overlay">+</div>
                <article>
                    <a href="#" class="close">x</a>
                    <h1><?PHP the_title() ?></h1>
                    <hr>
                    <?PHP the_content() ?>
                    <span><?PHP the_date('Y/d/m') ?></span>
                </article>
            </div>
        <?PHP endwhile; endif;  ?>
        </div>
        <div class="navigation">
            <?PHP next_posts_link(); ?>
        </div>
<?PHP get_footer(); ?>
@H_301_7@JavasScript –

@H_301_7@

var $container = $('#posts');

    $container.imagesLoaded(function(){
        $container.masonry({
            itemSELEctor: '.post',columnWidth: 475,isAnimated: true
        });
    });

    $(document).on("click","a.view",function(){
        if(!$(this).parent().find('article').is(':visible')){
            $(this).parent().find('article').slideDown(250);
        }
        else {
            $(this).parent().find('article').slideUp(250);
        }
        e.preventDefault();
    });

    $(document).on("mouSEOver",function(){
      $(this).parent().find('.overlay').stop().animate({ opacity: 1 },250);
    });
    $(document).on("mouSEOut",function(){
      $(this).parent().find('.overlay').stop().animate({ opacity: 0 },250);
    });

解决方法

看看你的网站,我相信你的问题是,当你运行.masonry()并将所有元素设置为position:absolute时,砌体正在计算大小和位置,然后当你展开文本时,它将被项目隐藏下面… @H_301_7@

@H_301_7@因此,您需要在展开项目后“更新”masonry().我不知道插件那么好,但也许是$(‘#posts’).masonry(‘reload’);会做的伎俩:)!

大佬总结

以上是大佬教程为你收集整理的砌体和jQuery内容切换(slideDown,show等)全部内容,希望文章能够帮你解决砌体和jQuery内容切换(slideDown,show等)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。