使用r.set()
我创建了一个集合,其中包含我想要动画的所有对象。
var r = Raphael("holder", '100%', '100%'),
targets = r.set(),
size = 30,
offset = 10;
for (var i = 0, j = 0; j < 10; i += size, j++) {
targets.push(r.rect(i, 10, size, size));
i += offset;
}
我想使用简单的动画以随机顺序显示所有对象:
function animate() {
targets[index].animate({
fill: "#cde",
opacity: 1
}, 1000, 'linear');
index++;
if (index < targets.length) setTimeout(animate, 1000);
}
animate();
上面的代码按顺序一一显示了所有元素。
我尝试使用插件进行随机排序:
Raphael.st.sort = function (callback) {
var cb = callback || function (a, b) {
if (a.id < b.id) {
return -1;
} else if (a.id > b.id) {
return 1;
} else {
return 0;
}
};
Array.prototype.sort(this, cb);
this.items.sort(cb);
return this;
};
function shuffle(a, b) {
return Math.random() > 0.5 ? -1 : 1;
};
但没有任何运气。
我的问题是如何随机排序要显示的元素集合?
这是我的 jsfiddle:http: //jsfiddle.net/Misiu/UDmym/