做canvas相关的东西,测试性能肯定要看fps,电脑端用浏览器就可以,移动端就不方便了。
也不需要特别复杂的功能,能显示fps就可以,自己封装了一个简单的fps显示功能模块。
先看效果
html中使用方式:
<script type="text/javascript" src = "/js/fps.js"></script> <script type="text/javascript"> var fps = new Fps().show(); </script>
js代码如下:
function Fps() { var tf = document.createElement("div"); tf.style.color = "red"; tf.style.position = "absolute"; tf.style.left = "10px"; tf.style.top = "10px"; tf.style.fontSize = "16px"; var fps = 0; var n = 0; var t = 0; var id; function loop() { n++; var t0 = new Date().getTime(); if (t0 - t > 1000) { fps = n; n = 0; t += 1000; } tf.innerHTML = "FPS:" + fps; id = requestAnimationFrame(loop); } this.show = function() { if(id) { return this; } t = new Date().getTime(); n = 0; fps = 0; id = requestAnimationFrame(loop); if(document.body) { document.body.appendChild(tf); } else { window.addEventListener("load", function(){ document.body.appendChild(tf); }); } return this; } this.remove = function() { if(id){ cancelAnimationFrame(id); id = null; } if(tf.parentNode) { tf.parentNode.removeChild(tf); } } }
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。