Tests:
-
-
Save rklancer/6135633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<meta charset="utf-8"> | |
<style> | |
svg { | |
border: 1px dashed gray; | |
} | |
#results, #container { | |
display: inline-block; | |
margin: 15px; | |
} | |
p { | |
margin: 15px; | |
} | |
td { | |
border: 1px solid #bbb; | |
} | |
.header { | |
font-weight: bold; | |
} | |
</style> | |
<body> | |
<p id="user-agent"></p> | |
<div id="container"></div> | |
<table id="results"> | |
<tr class="header"> | |
<td>Circles</td> | |
<td>FPS</td> | |
<td>repaint [ms]</td> | |
</tr> | |
</table> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
/* global requestAnimationFrame, $, d3 */ | |
window.requestAnimationFrame = (function() { | |
return window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
window.oRequestAnimationFrame || | |
window.msRequestAnimationFrame || | |
function(/* function FrameRequestCallback */ callback, /* DOMElement Element */ element) { | |
return window.setTimeout(callback, 1000/60); | |
}; | |
})(); | |
var tests = [25, 50, 150, 250, 500, 750]; | |
function updateResults(count, time, steps) { | |
var repaint = time / steps, | |
$tr = $("<tr>"); | |
$tr.append("<td>" + count + "</td><td>" + (1000/repaint).toFixed(2) + "</td><td>" + repaint.toFixed(2) + "</td>"); | |
$("#results").append($tr); | |
} | |
function test() { | |
var count, | |
maxX = 500, | |
maxY = 400, | |
maxSteps = 150, | |
radius = 15, | |
steps = 0, | |
svg, | |
circles = [], | |
circlesSel, | |
startTime, | |
circle, | |
i; | |
if (tests.length > 0) { | |
$("#container").empty(); | |
count = tests.shift(); | |
} else { | |
return; | |
} | |
svg = d3.select("#container").append("svg") | |
.attr("width", maxX) | |
.attr("height", maxY); | |
for (i = 0; i < count; i++) { | |
circle = { | |
x: maxX * Math.random(), | |
y: maxY * Math.random(), | |
radius: radius, | |
fill: 'red', | |
stroke: 'black', | |
strokeWidth: 2, | |
vx: Math.random(), | |
vy: Math.random() | |
}; | |
circles.push(circle); | |
} | |
circlesSel = svg.selectAll("circle").data(circles); | |
circlesSel.enter().append("circle") | |
.attr({ | |
"r": function (d) { return d.radius; }, | |
"cx": function (d) { return d.x; }, | |
"cy": function (d) { return d.y; } | |
}) | |
.style({ | |
"fill": function (d) { return d.fill; }, | |
"stroke": function (d) { return d.stroke; }, | |
"stroke-width": function (d) { return d.strokeWidth; } | |
}); | |
// Start animation. | |
startTime = new Date().getTime(); | |
requestAnimationFrame(step); | |
function step() { | |
var i, len, c, time; | |
for (i = 0, len = count; i < len; i++) { | |
c = circles[i]; | |
if (c.x >= maxX || c.x <= 0) c.vx *= -1; | |
if (c.y >= maxY || c.y <= 0) c.vy *= -1; | |
c.x += c.vx; | |
c.y += c.vy; | |
} | |
circlesSel.attr({ | |
"cx": function (d) { return d.x; }, | |
"cy": function (d) { return d.y; } | |
}); | |
if (steps < maxSteps) { | |
steps++; | |
requestAnimationFrame(step); | |
} else { | |
time = new Date().getTime() - startTime; | |
updateResults(count, time, maxSteps); | |
test(); | |
} | |
} | |
} | |
$(function () { | |
$("#user-agent").text(navigator.userAgent); | |
test(); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment