用于比较和保存项目的jQuery多列表解决方案

Rép*_*pás 3 html javascript css jquery drag-and-drop

我正在制作一个可以比较和列出项目的工具.我想给它们制作动画,使它们看起来很酷.请帮我解决实施中的一些问题.有很多问题因此我对每个问题单独提出了一个问题.

问题1 mouseout事件绑定

如果我选择一个项目并将其拉到list1 - list2 - list1,有时会关闭覆盖面板.

问题2单击事件绑定

如果我将一个元素推送到list1,将其放到列表中并单击另一个列表,列表将更接近.点击返回list1后,它会动画3次而不是1次.

发行3个占位符

如何将占位符放到列表中,更好地重新排列和更容易理解交叉删除(列表以列出拖放和项目到列表)

问题4动画平滑度

如何让动画变得更流畅?你怎么看待这件事?

问题5优化

您如何看待,如果我优化代码,它会在浏览器中更快一些吗?你能给我一些建议吗?

发布其他6个想法

如果你有一些一般的想法,我也会欢迎他们.下载它,根据需要使用它,我正在为我女朋友的网站制作它.

你可以在这里检查代码 - jsFiddle,或:

HTML

<div id="overlay" class="clearfix">
    <div id="overlaycontainer">
        <div id="comparecontainer" class="overlaycontainer">
            <div class="icon"></div>
            <ul id="compare">
                <li class="fixed">LIST1</li>        
            </ul>
            <div class="shadow"></div>

        </div>
        <div id="dreamlistcontainer" class="overlaycontainer">
            <div class="icon"></div>
            <ul id="dreamlist">
                <li class="fixed">LIST2</li>
            </ul>
            <div class="shadow"></div>
        </div>
    </div>
</div>

<hr />

<ul class="offers clearfix">
    <li name="deal1">ITEM #1</li>
    <li name="deal2">ITEM #2</li>
    <li name="deal3">ITEM #3</li>
</ul>
Run Code Online (Sandbox Code Playgroud)

CSS

body {background-color: white; padding: 50px 0 0; margin: 0;}
ul {list-style-type: none;}
#overlay {background: black url(img/dreamlist_bg.gif) center center no-repeat; display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;}
#overlaycontainer {width: 800px; height: 600px; position: relative; margin: auto; top: 50%; margin-top: -300px;}
.clearfix:after {visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;}
.overlaycontainer { height:500px; float: left;
    box-shadow: 0 0 5px black;
    -moz-box-shadow: 0 0 5px black;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
}
.overlaycontainer.active {
    box-shadow: 0 0 10px #1cb9ee, 0 0 30px #1a86ce, 0 0 3px white;
    -moz-box-shadow: 0 0 10px #1cb9ee, 0 0 30px #1a86ce, 0 0 3px white;
}
#compare {padding: 20px; background-color: yellow;}
#dreamlist {padding: 20px; background-color: white;}        
#comparecontainer {position: absolute; top: 0; left: 0; width: 290px; opacity: 0.9;}
#dreamlistcontainer {position: absolute; top: 0; right: 0; width: 500px; opacity: 0.9;}
li {padding: 10px;}
.drop {width: 10px; height:10px; background-color: red; display: inline-block;}    
.offers {padding: 10px;}
.offers li {width: 194px; height: 300px; overflow: hidden;float: left; margin-right: 5px;}
.fixed {text-transform: uppercase; font-family: "Gill Sans"; color: #1a86ce; font-size: 28px; text-align: center; text-shadow: 0px 1px 0px white;}
.shadow {
    position: absolute;
    bottom: -11px;
    display: block;
    background: transparent url(img/imagesforem.png) no-repeat;
    height: 50px;
    width: 50px;
    margin: 0 auto;
}
.icon {
    position: absolute;
    bottom: 10px;
    display: block;
    background: transparent url(img/imagesforic.png) no-repeat;
    height: 50px;
    width: 50px;
    margin: 0 auto;
}
#comparecontainer .icon {background-position: bottom left; left: 41%;}
#dreamlistcontainer .icon {background-position: bottom right; right: 50%}
Run Code Online (Sandbox Code Playgroud)

JS

function overlayFadeIn() {
    $("#overlay").fadeIn();
}

function overlayFadeOut() {
    //    alert("faded.");
    pushBack();
    $("#overlay").fadeOut();
    $("#overlaycontainer").unbind("mouseleave");
}

function dropOut() {
    $(this).parent().remove();
}

function pushBack() {
    $("#overlaycontainer").unbind("mouseleave");
    $("#dreamlist").parent().animate({
        width: "500px",
        opacity: "0.9",
        right: "0",
        top: "0",
        height: "500px"
    }, 100);
    $("#compare").parent().animate({
        width: "290px",
        opacity: "0.9",
        left: "0",
        top: "0",
        height: "500px"
    }, 100);
    $("#overlaycontainer").bind("mouseleave", overlayFadeOut);
}

function pushBitCloser(which) {
    var which = which;
    var other;
    if (which.attr("id") == "dreamlist") {
        other = $("#compare"); //bal - left
        whleft = "+=15px";
        otleft = "+=0px";
        whright = "+=0px";
        otright = "+=50px";
    }
    else {
        other = $("#dreamlist"); // right
        whleft = "+=0px";
        otleft = "-=10px";
        whright = "+=0px";
        otright = "+=0px";
    }


    if (which.attr("id") == "dreamlist") {
        $("#dreamlist").parent().animate({
            width: "530px",
            opacity: "1",
            height: "550px",
            top: "-25px",
            right: "-15px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                opacity: 'linear'
            }
        });
        $("#compare").parent().animate({
            width: "270px",
            opacity: "0.7",
            left: "+10px",
            top: "+10px",
            height: "480px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                height: 'linear',
                top: 'linear',
                opacity: 'linear'
            }
        });
    }
    else {
        $("#compare").parent().animate({
            width: "320px",
            opacity: "1",
            left: "+10px",
            top: "-15px",
            height: "530px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                height: 'linear',
                top: 'linear',
                opacity: 'linear'
            }
        });
        $("#dreamlist").parent().animate({
            width: "470px",
            opacity: "0.7",
            height: "480px",
            top: "+10px",
            right: "-15px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                opacity: 'linear'
            }
        });

    }
}

function pushCloser(which, pb) {
    if (pb == true) {
        pushBack();
    }

    var which = which;
    var other;
    if (which.attr("id") == "dreamlist") {
        other = $("#compare");
    }
    else {
        other = $("#dreamlist");
    }

    which.parent().css({
        "z-index": "20"
    });
    other.parent().css({
        "z-index": "10"
    });



    if (which.attr("id") == "dreamlist") {
        $("#dreamlist").parent().animate({
            width: "550px",
            opacity: "1",
            height: "550px",
            top: "-25px",
            right: "-15px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                opacity: 'linear'
            }
        });
        $("#compare").parent().animate({
            width: "270px",
            opacity: "0.7",
            left: "+10px",
            top: "+10px",
            height: "480px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                height: 'linear',
                top: 'linear',
                opacity: 'linear'
            }
        });
    }
    else {
        $("#compare").parent().animate({
            width: "320px",
            opacity: "1",
            left: "+15px",
            top: "-15px",
            height: "530px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                height: 'linear',
                top: 'linear',
                opacity: 'linear'
            }
        });
        $("#dreamlist").parent().animate({
            width: "490px",
            opacity: "0.7",
            height: "480px",
            top: "+10px",
            right: "-10px"
        }, {
            duration: 200,
            specialEasing: {
                width: 'linear',
                opacity: 'linear'
            }
        });

    }
}

$(".offers li").draggable({
    helper: "clone",
    revert: "invalid",
    cursor: "move",
    zIndex: 30,
    start: function(event, ui) {
        overlayFadeIn();
    },
    stop: function(event, ui) {
        $("#overlaycontainer").bind("mouseleave", overlayFadeOut);
    }
});

$("#compare").droppable({
    activeClass: "ui-state-default",
    hoverClass: "ui-state-hover",
    accept: ":not(.incompare)",
    greedy: true,
    tolerance: 'pointer',
    over: function(event, ui) {
        $(this).parent().addClass("active");
        pushBitCloser($(this));
    },
    out: function(event, ui) {
        $(this).parent().removeClass("active");
        pushBack($(this));

    },
    drop: function(event, ui) {
        $(this).parent().removeClass("active");
        $("#overlaycontainer").bind("mouseleave", overlayFadeOut);

        pushCloser($(this), false);
        var element_id = ui.draggable.attr("name");
        var gotit = $("#compare li[name='" + element_id + "']").size();
        if (gotit != 1) {
            var drop = $('<span></span>').addClass("drop").bind("click", dropOut);
            $('<li class="incompare"></li>').attr("name", element_id).text(ui.draggable.text()).append(drop).appendTo(this);
        }
        $(this).find(".placeholder").remove();
        $("#dreamlist").parent().click(function() {
            pushCloser($("#dreamlist"), true)
        });
    }
}).sortable({
    helper: "clone",
    items: "li:not(.placeholder):not(.fixed)",
    start: function() {
        $("#overlaycontainer").unbind("mouseleave");
    },
    stop: function() {
        $("#overlaycontainer").bind("mouseleave", overlayFadeOut);
    },
    sort: function() {
        $(this).removeClass("ui-state-default");
    }
});

$("#dreamlist").droppable({
    activeClass: "ui-state-default",
    hoverClass: "ui-state-hover",
    accept: ":not(.indreamlist)",
    greedy: true,
    tolerance: 'pointer',
    over: function(event, ui) {
        $(this).parent().addClass("active");
        pushBitCloser($(this));
    },
    out: function(event, ui) {
        $(this).parent().removeClass("active");
        pushBack($(this));

    },
    drop: function(event, ui) {
        $(this).parent().removeClass("active");
        $("#overlaycontainer").bind("mouseleave", overlayFadeOut);
        pushCloser($(this), false);
        var element_id = ui.draggable.attr("name");
        var gotit = $("#dreamlist li[name='" + element_id + "']").size();
        if (gotit != 1) {
            var drop = $('<span></span>').addClass("drop").bind("click", dropOut);
            $('<li class="indreamlist"></li>').attr("name", element_id).text(ui.draggable.text()).append(drop).appendTo(this);
        }
        $(this).find(".placeholder").remove();
        $("#compare").parent().click(function() {
            pushCloser($("#compare"), true)
        });
    }
}).sortable({
    helper: "clone",
    items: "li:not(.placeholder):not(.fixed)",
    start: function() {
        $("#overlaycontainer").unbind("mouseleave");
    },
    stop: function() {
        $("#overlaycontainer").bind("mouseleave", overlayFadeOut);
    },
    sort: function() {
        $(this).removeClass("ui-state-default");
    }
});
Run Code Online (Sandbox Code Playgroud)

Nak*_*nch 13

看起来你正试图重新发明轮子并使所有东西过于复杂,以便看起来很性感,但实际上,这可能会让你的用户疯狂.

从我们的(stackoverflow)结束来看,这是一大堆代码,它们非常特定于您要尝试的内容,但我们只需要查看一个区域并提供帮助.

看看jQuery Sortable:http://jqueryui.com/demos/sortable/#connect-lists.这是一个非常干净但很好看的例子,当然可以用一些jQuery CSS动画进行爵士乐.所有浏览器的性能都非常好,您会发现它更容易维护.