canvas玩多了后,就会自动的要开始考虑性能问题了。怎么优化canvas的动画呢?
【使用缓存】
使用缓存也就是用离屏canvas进行预渲染了,原理很简单,就是先绘制到一个离屏canv水理肌as中,然后再通过drawimage把离屏canvas画到主canvas中。可能看到这很多人就会误解,这不是写游戏里面用的很多的双缓冲机制么?
其实不然,双缓冲机制是游戏编程中为了防止画面闪烁,因此会有一个显示在用户面前的画布以及一个后台画布,进行绘制时会先将画面内容绘制到后台画布中,再将后台画布里的数据绘制到前台画布中。这就是双缓冲,但是canvas中是没有双缓冲的,因为现代浏览器基本上都是内置了双缓冲机制。所以,使用离屏canvas并不是双缓冲,而是把离屏canvas当成一个缓存区。把需要重复绘制的画面数据进行缓存起来,减少调用canvas的api的消耗。
众所周知,调用canvas的api很消耗性能,所以,当我们要绘制一些重复的画面数据时,妥善利用离屏canvas对性能方面有很大的提升,可以看下下面的demo
1 、 没使用缓存
2、 使用了缓存但是没有设置离屏canvas的宽高
3 、 使用了缓存但是没有设置离屏canv二本毕业生as的宽高
4 、 使用了缓存且设置了离屏canvas的宽高
可以看到上面的demo的性能不一样,下面分析一下原因:为了实现每个圈的样式,所以绘制圈圈时我用了循环绘制,如果没用启用缓存,当页面的圈圈数量达到一定时,动画每一帧就要大量调用canvas的api,要进行大量的计算,这样再好的浏览器也会被拖垮啦。
xml/html code复制内容到剪贴板
ctx.save(); varj=0; ctx.linewidth=borderwidth; for(vari=1;i<this.r;i+=borderwidth){ ctx.beginpath(); ctx.strokestyle=this.color[j]; ctx.arc(this.x,this.y,i,0,2*math.pi); ctx.stroke(); j++; } ctx.restore(); 所以,我的方法很简单,每个圈圈对象里面给他一个离屏canvas作缓存区。
除了创建离屏canvas作为缓存之外,下面的代码中有一点很关键,就是要设置离屏canvas的宽度和高度,canvas生成后的默认大小是300×150;对于我的代码中每个缓存起来圈圈对象半径最大也就不超过80,所以300×150的大小明显会造成很多空白区域,会造成资源浪费,所以就要设置一下离屏canvas的宽度和高度,让它跟缓存起来的元素大小一致,这样也有利于提高动画性能。上面的四个demo很明显的显示出了性能差距,如果没有设置宽高,当页面超过400个圈圈对象时就会卡的不行了,而设置了宽高1000个圈圈对象也不觉得卡。
xml/html code
复制内容到剪贴板
varball=function(x,y,vx,vy,ucache){ this.x=x; this.y=y; this.vx=vx; this.vy=vy; this.r=getz(getrandom(20,40)); this.color=[]; this.cachecanvas=document.createelement(“canvas”); thisthis.cachectx=this.cachecanvas.getcontext(“2d”); this.cachecanvas.width=2*this.r; this.cachecanvas.height=2*this.r; varnum=getz(this.r/borderwidth); for(varj=0;j<num;j++){ this.color.push(“rgba(“+getz(getrandom(0,255))+”,”+getz(getrandom(0,255))+”,”+getz(getrandom(0,255))+”,1)”); } this.ucache=ucache; if(ucache){ this.cache(); } }当我实例化圈圈对象时,直接调用缓存方法,把复杂的圈圈直接画到圈圈对象的离屏canvas中保存起来。
xml/html code
复制内容到剪贴板
cache:function(){ this.cachectx.save(); varj=0; this.cachectx.linewidth=borderwidth; for(vari=1;i<this.r;i+=borderwidth){ this.cachectx.beginpath(); thisthis.cachectx.strokestyle=this.color[j]; this.cachectx.arc(this.r,this.r,i,0,2*math.pi); this.cachectx.stroke(); j++; } this.cachectx.restore(); }然后在接下来的动画中,我只需要把圈圈对象的离屏canvas画到主canvas中,这样,每一帧调用的canvasapi就只有这么一句话:
xml/html code
复制内容到剪贴板
ctx.drawimage(this.cachecanvas,this.x-this.r,this.y-this.r);跟之前的for循环绘制比起来,实在是快太多了。所以当需要重复绘制矢量图的时候或者绘制多个图片的时候,我们都可以合理利用离屏canvas来预先把画面数据缓存起来,在接下来的每一帧中就能减少很多没必要的消耗性能的操作。
下面贴出1000个圈圈对象流畅版代码:
xml/html code
复制内容到剪贴板
<!doctypehtml><htmllang=“en”><head><metachart=“utf-8”><style>body{ padding:0; margin:0; overflow:hidden; } #cas{ display:block; background-color:rgba(0,0,0,0); margin:auto; border:1pxsolid; } </style><title>测试</title></head><body><div><canvasid=‘cas’width=“800”height=“600”>浏览器不支持canvas</canvas><divstyle=“text-align:center”>1000个圈圈对象也不卡</div></div><script>vartestbox=function(){ varcanvas=document.getelementbyid(“cas”), ctx=canvas.getcontext(‘2d’), borderwidth=2, balls=[]; varball=function(x,y,vx,vy,ucache){ this.x=x; this.y=y; this.vx=vx; this.vy=vy; this.r=getz(getrandom(20,40)); this.color=[]; this.cachecanvas=document.createelement(“canvas”); thisthis.cachectx=this.cachecanvas.getcontext(“2d”); this.cachecanvas.width=2*this.r; this.cachecanvas.height=2*this.r; varnum=getz(this.r/borderwidth); for(varj=0;j<num;j++){ this.color.push(“rgba(“+getz(getrandom(0,255))+”,”+getz(getrandom(0,255))+”,”+getz(getrandom(0,255))+”,1)”); } this.ucache=ucache; if(ucache){ this.cache(); } } functiongetz(num){ varrounded; rounded=(0.5+num)|0; //adoublebitwinot. rounded=~~(0.5+num); //finally,aleftbitwishift. rounded=(0.5+num)<<0; returnrounded; } ball.prototype={ paint:function(ctx){ if(!this.ucache){ ctx.save(); varj=0; ctx.linewidth=borderwidth; for(vari=1;i<this.r;i+=borderwidth){ ctx.beginpath(); ctx.strokestyle=this.color[j]; ctx.arc(this.x,this.y,i,0,2*math.pi); ctx.stroke(); j++; } ctx.restore(); }el{ ctx.drawimage(this.cachecanvas,this.x-this.r,this.y-this.r); } }, cache:function(){ this.cachectx.save(); varj=0; this.cachectx.linewidth=borderwidth; for(vari=1;i<this.r;i+=borderwidth){ this.cachectx.beginpath(); thisthis.cachectx.strokestyle=this.color[j]; this.cachectx.arc(this.r,this.r,i,0,2*math.pi); this.cachectx.stroke(); j++; } this.cachectx.restore(); }, move:function(){ this.x+=this.vx; this.y+=this.vy; if(this.x>(canvas.width-this.r)||this.x<this.r){ thisthis.x=this.x<this.r?this.r:(canvas.width-this.r); this.vx=-this.vx; } if(this.y>(canvas.height-this.r)||this.y&四级考试多长时间lt;this.r){ thisthis.y=this.y<this.r?this.r:(canvas.height-this.r); this.vy=-this.vy; } this.paint(ctx); } } vargame={ init:function(){ for(vari=0;i<1购书卡000;i++){ varb=newball(getrandom(0,canvas.width),getrandom(0,canvas.height),getrandom(-10,10),getrandom(-10,10),true) balls.push(b); } }, update:function(){ ctx.clearrect(0,0,canvas.width,canvas.height); for(vari=0;i<balls.length;i++){ balls[i].move(); } }, loop:function(){ var_this=this; this.update(); raf(function(){ _this.loop(); }) }, start:function(){ this.init(); this.loop(); } } window.raf=(function(){ returnwindow.requestanimationframe||window.webkitrequestanimationframe||window.mozrequestanimationframe||window.orequestanimationframe||window.msrequestanimationframe||function(callback){window.ttimeout(callback,1000/60);}; })(); returngame; }(); functiongetrandom(a,b){ returnmath.random()*(b-a)+a; } window.onload=function(){ testbox.start(); } </script></body></html> 离屏canvas还有一个注意事项,如果你做的效果是会将对象不停地创建和销毁,请慎重使用离屏canvas,至少不要像我上面写的那样给每个对象的属性绑定离屏canvas。
因为如果这样绑定,当对象被销毁时,离屏canvas也会被销毁,而大量的离屏canvas不停地被创建和销毁,会导致canvas buffer耗费大量gpu资源,容易造成浏览器崩溃或者严重卡帧现象。解决办法就是弄一个离屏canvas数组,预先装进足够数量的离屏canvas,仅将仍然存活的对象缓存起来,当对象被销毁时,再解除缓存。这样就不会导致离屏canvas被销毁了。
【使用requestanimationframe】
这个就不具体解释了,估计很多人都知道,这个才是做动画的最佳循环,而不是ttimeout或者tinterval。直接贴出兼容性写法:
xml/html code
复制内容到剪贴板
window.raf=(function(){ returnwindow.requestanimationframe||window.webkitrequestanimationframe||window.mozrequestanimationframe||window.orequestanimationframe||window.msrequestanimationframe||function(callback){window.ttimeout(callback,1000/60);}; })();
【避免浮点运算】
虽然javascript提供了很方便的一些取整方法,像math.floor,math.ceil,parint,但是,国外友人做过测试,parint这个方法做了一些额外的工作(比如检测数据是不是有效的数值,parint 甚至先将参数转换成了字符串!),所以特殊英语,直接用parint的话相对来说比较消耗性能,那怎样取整呢,可以直接用老外写的很巧妙的方法了:
javascript code复制内容到剪贴板 1.rounded=(0.5+somenum)|0;
2.rounded=~~(0.5+somenum);3.rounded=(0.5+somenum)<<0;
运算符不懂的可以直接戳: 里面有详细解释
【尽量减少canvasapi的调用】
作粒子效果时,尽量少使用圆,最好使用方形,因为粒子太小,所以方形看上去也跟圆差不多。至于原因,很容易理解,我们画一个圆需要三个步骤:先beginpath,然后用arc画弧,再用fill进行填充才能产生一个圆。但是画方形,只需要一个fillrect就可以了。虽然只是差了两个调用,当粒子对象数量达到一定时,这性能差距就会显示出来了。
还有一些其他注意事项,我就不一一列举了,因为谷歌上一搜也挺多的。我这也算是一个给自己做下记录,主要是记录缓存的用法。想要提升canvas的性能最主要的还是得注意代码的结构,减少不必要的api调用,在每一帧中减少复杂的运算或者把复杂运算由每一帧算一次改成数帧算一次。同时,上面所述的缓存用法,我因为贪图方便,所以是每个对象一个离屏canvas,其实离屏canvas也不能用的太泛滥,如果用太多离屏canvas也会有性能问题,请尽量合理利用离屏canvas。
源码地址:https://github.com/whxaxes/canvas-test/tree/gh-pages/src/other-demo/cache