Js - 理解时间安排相互冲突的属性

时间:2011-10-13 06:39:11

标签: javascript jquery

所有

使用jquery为 li 元素上的滑动效果设置动画。虽然我已设法创建滑动效果,但它没有正确设置动画。

问题: 我认为问题在于jquery动画时序,它与jquery动画调用下面的其余代码冲突。

代码: 以下是相关的审核代码(下面的jsfiddle链接):

    function activateRightTab()
{
    var eTabIndDiv = document.getElementById ("feature_tabs_indicators").children[0];
    var iIndsCount = eTabIndDiv.childNodes[1].children.length;
    var direction = "right";
    if (iActiveNo < iTabsCount - 1 && iActiveNo >= 0)
    {
        iActiveNo = iActiveNo + 1;
        var eCurrentTab = eTabsDiv.children[iActiveNo];
        var ePreviousTab = eTabsDiv.children[iActiveNo - 1];
        if (iActiveNo > 0)
        {
            ePreviousTab.style.position = "relative";
            $(ePreviousTab).animate({"right" : "210px"}, 250);
            $(eTabIndDiv.children[iActiveNo - 1]).animate({"width" : "12px"}, 250).animate({"width" : "18px"}, 125);

            // ****** the following three lines conflict with the above jquery line ******  

            self.setTimeout(ePreviousTab.style.width = "0", 250);
            ePreviousTab.style.color = "transparent";
            ePreviousTab.style.position = "static";
        }
        eCurrentTab.style.position = "relative";
        eCurrentTab.style.right = "-210px";
        eCurrentTab.style.width = "210px";
        eCurrentTab.style.backgroundColor = "rgb(165,145,176)";
        eCurrentTab.style.color = "black";
        $(eCurrentTab).animate({"right" : "10px"}, 250).animate({"right" : "0"}, 125);
        $(eTabIndDiv.children[iActiveNo]).animate({"width" : "127px"}, 250).animate({"width" : "121px"},125);
    }
    if (iActiveNo === iTabsCount - 1 && eRightScrollButton.style.opacity === "0.5")         //springy effect when no other right tab
    {
        $(eTabsDiv.children[iActiveNo]).animate({"right" : "10px"}, 100).animate({"right" : "-5px"}, 45).animate({"right" : "0"}, 10);          
    }
    (iActiveNo === iTabsCount - 1) ? eRightScrollButton.style.opacity = "0.5" : false;
    activateFeaturesContainer(direction);
    return iActiveNo;
}

Here is the working prototype on jsfiddle (按右侧的浅绿色按钮'rght'按钮

2 个答案:

答案 0 :(得分:2)

不要使用超时来决定何时设置CSS。

.animate()函数附带一个完整的回调,将在动画完成时运行。

$(eTabIndDiv.children[iActiveNo - 1])
                .animate({width: "12px"}, 250)
                .animate({width: "18px"},
                         {complete: function(){
                             ePreviousTab.css('width', '0');
                          }, 
                          duration: 125});

http://jsfiddle.net/RtaK7/4/

答案 1 :(得分:2)

您必须将函数中的代码包装在setTimeout中。就目前而言,宽度正在立即设定:

self.setTimeout(ePreviousTab.style.width = "0", 250);

// Should be:
self.setTimeout(function(){ePreviousTab.style.width = "0";}, 250);