Velocity.js在动画后清除默认值

时间:2014-10-02 08:45:19

标签: javascript jquery css animation velocity.js

我在页面上有要动画的元素以供查看,但在他们动画后,我想将其上的动画推迟到CSS(通过更改类)......我发现了Velocity将我的所有动画属性留在style=标记中,使CSS转换无法进行。

我在下面有 解决方案,但是在完成时重置CSS似乎 iffy ,我想知道是否有更好的方式做到了吗?

// first use CSS to hide the element and squish it
$el.css({ 
    width: 0, 
    left: "-10px", 
    opacity: 0,
    marginRight: 0,
    transition: "none"
})

// now animate the width and margin (do this first
// so there's a little gap between existing elements
// before we fade in new element.
.velocity({ 
    width: width,
    marginRight: margin
}, {
    queue: false,
    duration: 230
})

// then fade and move in the new element,
// but this is the iffy bit when it completes
// I have to unset all the styles I've animated?
.velocity({ 
    left: 0, 
    opacity: 1 
}, {
    queue: false,
    duration: 100,
    delay: 130,
    complete: function(els) {

        $(els).css({
            width: "",
            left: "",
            opacity: "",
            marginRight: "",
            transition: ""
         });             
    }
});

1 个答案:

答案 0 :(得分:6)

通常,您希望动画引擎将样式保持内联;否则最终值将在删除时被样式表覆盖时弹出。

您也可以$(els).attr("style", "");清除所有样式。