$.Deferred(function(dfr) {
$("#container > div").each(function() {
var $div = $(this);
dfr = dfr.pipe(function() {
return $div.fadeIn();
});
});
}).resolve();
有没有办法在上面的代码中单独加载 dfr,然后将其传递给 $。延迟() 类似...
$("#container > div").each(function() {
var $div = $(this);
dfr = dfr.pipe(function() {
return $div.fadeIn();
});
});
$.Deferred(function(dfr) { }).resolve();
http://jsfiddle.net/realwork007/KgY33/25/与此示例类似,但唯一的问题是我将单独填充 dfr。
编辑:我正在编写可视化选择排序算法,我有 3 到 4 个辅助功能,例如更改背景块(),眨眼(索引)和交换(从,到)
所以我的选择排序可视化是这样的:
function selectionSort(items){
var len = items.length, min;
for (i=0; i < len; i++){
blink(blocks[i]);// to show It is selected
//set minimum to this position
min = i;
changebackground(blocks[i]);//show it is min
//check the rest of the array to see if anything is smaller
for (j=i+1; j < len; j++){
if (items[j] < items[min]){
min = j;
swap(blocks[min], blocks[j]);//swap animation function
}
}
.
.
.
.
如果我运行此方法,所有动画同时运行,但我需要它们按顺序运行......
使用任何技术...
只是一个猜测:
var dfr;
$("#container > div").each(function() {
var $div = $(this);
dfr = dfr
? dfr.pipe(function() {
return $div.fadeIn().promise();
})
: $div.fadeIn().promise();
});
dfr.done(alert.bind(window, "All divs faded In"));
你似乎不需要新建的Deferred
,如果你只是想立即解决它。只需使用您得到的第一个承诺。如果你不想这样,你也可以这样做:
var first = new $.Deferred,
curDfr = first;
function blink($el) {
curDfr = curDfr.pipe(function() {
return $el.animate("background-color", "red").animate("background-color", "transparent").promise();
});
}
// now you can use blink() in your algorithm
// and the animation will be executed when all piped deferreds before
// have been resolved
first.resolve(); // you can move this where you want
curDfr.done(/* when everything happened */);
因此,您将得到一个包含延迟的全局变量,并且您可以随时添加动画将其替换为新的管道承诺。这不仅适用于我们都演示的fadeIn
,也适用于 changeBackground
、 blink
或 swap
.
你也可以看看 .queue(),它可能更适合动画而不是延迟。