我正在制作一个可以比较和列出项目的工具。我想为它们设置动画,以便它们看起来很酷。请帮助我解决实现中的一些问题。有多个问题,所以我每个问题都单独提出。
发出1个mouseout事件绑定(bind)
有时,如果我选择一个项目并将其拉到list1-list2-list1,则覆盖面板会关闭。
问题2点击事件绑定(bind)
如果我将一个元素推到list1,将其放到列表中,然后单击另一个列表,该列表将更近。单击返回到list1后,它会动画3次,而不是1次。
问题3占位符
我如何将占位符放置到列表中,这使得更好地重新排列并更容易理解交叉放置(对于列表到列表拖放以及项目到列表)
问题4动画平滑度
如何使动画更流畅?你怎么看待这件事?
问题5优化
您认为,如果我稍微优化一下代码,它将在浏览器中更快吗?你能给我一些建议吗?
提出6个其他想法
如果您对此有一些一般性的想法,我也欢迎您。
下载它,并根据需要使用,我正在其女 friend 网站上进行制作。
You can check the code here-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>
的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%}
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");
    }
});

最佳答案

似乎您是在尝试重新设计轮子,并使所有事情都变得过于复杂,以使外观看起来很性感,但实际上,这可能会使您的用户发疯。

从我们的(stackoverflow) Angular 来看,这是很多代码,这些代码非常具体地与您要执行的操作有关,但是我们要做的只是很多事情,我们需要着眼于一个 Realm 并提供帮助。

看一下jQuery Sortable:http://jqueryui.com/demos/sortable/#connect-lists。这是一个非常干净但外观漂亮的示例,可以肯定地用一些jQuery CSS动画进行了修饰。在所有浏览器上的性能都非常好,您会发现它更易于维护。

10-07 19:18
查看更多