我正试图让fadeIn(不透明度切换)和边框渐变(使用jquery-animate-colors)同时触发,但我遇到了一些麻烦。有人可以帮助查看以下代码吗?
$.fn.extend({
key_fadeIn: function() {
return $(this).animate({
opacity: "1"
}, 600);
},
key_fadeOut: function() {
return $(this).animate({
opacity: "0.4"
}, 600);
}
});
fadeUnselected = function(row) {
$("#bar > div").filter(function() {
return $(this).id !== row;
}).key_fadeOut();
return $(row).key_fadeIn();
};
highlightRow = function(row, count) {
return $(row).animate({
"border-color": "#3737A2"
}).animate({
"border-color": "#FFFFFF"
}).animate({
"border-color": "#3737A2"
}).animate({
"border-color": "#FFFFFF"
});
};
fadeUnselected("#foo");
highlightRow("#foo"); // doesn't fire until fadeUnselected is complete
真的很感激。谢谢!
答案 0 :(得分:9)
默认情况下,JQuery会在动画队列中放置动画,以便它们一个接一个地发生。如果您希望动画发生,请立即在动画选项图中设置queue:false
标记。
例如,在您的情况下,
$(this).animate({
opacity: "1"
}, 600);
会变成
$(this).animate(
{
opacity: "1"
},
{
duration:600,
queue:false
});
你可能想要使用选项图并为边框动画设置队列。
答案 1 :(得分:0)
$.fn.extend({
key_fadeIn: function() {
return $(this).animate({
opacity: "1"
}, { duration:600, queue:false });
},
key_fadeOut: function() {
return $(this).animate({
opacity: "0.4"
}, { duration:600, queue:false });
}
});
fadeUnselected = function(row) {
$("#bar > div").filter(function() {
return $(this).id !== row;
}).key_fadeOut();
return $(row).key_fadeIn();
};
highlightRow = function(row, count) {
return $(row).animate({
"border-color": "#3737A2"
}).animate({
"border-color": "#FFFFFF"
}).animate({
"border-color": "#3737A2"
}).animate({
"border-color": "#FFFFFF"
});
};