我有这段代码(我会指出我很困惑的地方,只是添加了那堵大墙,以防万一任何人真正想深入一探)。

无论如何,行为是显示这些框,当您单击一个框时,该框会展开并显示更多信息。这在70%的时间中有效,但是,当图像未破裂时,再次单击该框将其最小化时,它似乎开始缩小,然后弹出。我想知道这是否与以下行有关:if($(this)[0].style.width == '70%'){

如果还不够,请随时询问,以及是否要尝试复制问题:

http://newgameplus.nikuai.net/

尝试搜索一些游戏,然后单击结果。 (仅当我说的话没有任何意义时)

谢谢。

$container.on("click", ".box", function (event) {
    var description;
    var user_id;
    var org_img = $(this).find("img").attr("src");
    if ($(this)[0].style.width == '70%') {
        $(this).find("img").attr("src", org_img);
        $(this).css('width', '18%');
        $(this).find(".resultData").fadeOut('slow');
        $container.masonry('reload');
    } else {
        var me = this;
        value['name'] = $(me).find("p").html();
        oldImage = $(this).find("img").attr("src");
        $.ajax({
            url: 'scripts/php/fetchResultsData.php',
            data: {
                action: value
            },
            type: 'post',
            dataType: 'json',
            success: function (data) {
                description = data[0][2];

                for (var i = 0; i < $test.length; i++) {
                    if ($test[i][1][2]['name'] == value['name']) {
                        pos = i;
                        break;
                    }
                }

                $(me).find("img").attr("src", data[0][4]);
                $(me).css('width', '70%');

                $(me).append("\
                                        <div class='resultData'>\
                                            <div class='resultName'>" + value['name'] + "</div>\
                                            <div class='resultDesc'>" + description + "</div>\
                                            <div class='reasonDataTitle'> Similar tropes between this game and the searched games </div>\
                                            <div class='reasonData'>" + $test[pos][4] + "</div>\
                                            <div class='wikiLink'><a href='http://wikipedia.org/wiki/" + value['name'] + "'>Wikipedia</a></div>\
                                            <div class='resultLike'></div>\
                                        </div>");
                value['clicked'] = 0;
                $.ajax({
                    url: 'scripts/php/userProfile.php',
                    data: {
                        action: value
                    },
                    type: 'post',
                    dataType: 'json',
                    success: function (profileData) {
                        if (profileData == 'alreadyAdded') {
                            $(me).children('.resultData').children('.resultLike').html('un-Favourite');
                        } else if (profileData == 'notLoggedIn') {
                            $(me).children('.resultData').children('.resultLike').html('Login to add');
                        } else {
                            $(me).children('.resultData').children('.resultLike').html('Favourite?');
                        }
                    }
                });
                $(me).on("click", '.resultLike', function (event) {
                    event.stopPropagation()
                    value['clicked'] = 1;
                    $.ajax({
                        url: 'scripts/php/userProfile.php',
                        data: {
                            action: value
                        },
                        type: 'post',
                        dataType: 'json',
                        success: function (profileData) {
                            if (profileData == 'removed') {
                                $(me).children('.resultData').children('.resultLike').html('Favourite?');
                            } else if (profileData == 'notLoggedIn') {
                                $(me).children('.resultData').children('.resultLike').html('Login to add');
                            } else {
                                $(me).children('.resultData').children('.resultLike').html('un-Favourite');
                            }
                        }
                    });
                });
                $container.masonry('reload');
            }

        });
    }
});

最佳答案

我怀疑您的效果代码中存在比赛条件。 jQuery效果异步运行,因此$container.masonry('reload')将在fadeOut开始而不是完成之后被调用。如果jQuery Masonry插件影响您正在淡出的任何块的显示(并且其文档表明这很有可能),则同时运行这两个函数的竞争状态将取消第一个。

要解决此问题,请尝试在回调函数中将Masonry重新加载运行到fadeOut,如下所示:

$(this).find(".resultData").fadeOut('slow', function () {
    $container.masonry('reload');
});


它仅在某些时候发生的原因是基于事物加载的速度,这可以解释为什么它仅在某些资产未缓存时发生。

07-24 16:49
查看更多