我真的只关心Webkit,但总的来说,Raphael JS在构建成千上万个矩形时表现出色吗?
此外,我需要能够处理每个矩形(yipes)上的事件。
我有一个可行的C ++解决方案,但我宁愿使用RaphaelJS。
谢谢:)
答案 0 :(得分:4)
我对RaphaelJS一无所知,但我可以用这段代码给你一个表现提示:
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title></title>
<script>
window.onload = function () {
var rectangles = 5000;
for (var i = 0; i < rectangles; i ++) {
var height = 50;
var width = 50;
var canvas = document.createElement ("canvas");
canvas.height = height;
canvas.style.margin = "15px";
canvas.width = width;
canvas.addEventListener ("click", function () {
alert ("You like to MOVE !");
}, false);
var ctx = canvas.getContext ("2d");
ctx.fillStyle = "silver";
ctx.fillRect (0, 0, width, height)
document.body.appendChild (canvas);
}
canvas = document.body.getElementsByTagName ("canvas");
window.setInterval (function () {
for (var i = 0; i < canvas.length; i ++) {
canvas[i].style.margin = (Math.floor (Math.random () * 16)) + "px";
}
}, 100);
}
</script>
</head>
<body></body>
</html>
使用“onclick”事件移动5000个矩形:
答案 1 :(得分:4)
如果您想测试一下Raphael JS的表现,我已经发布了一个快速绘制10,000点积分的例子。测试渲染和清晰时间。