Dom*_*que 5 javascript memory memory-leaks canvas draw
这个脚本在所有浏览器中无休止地占用内存。我不明白为什么!
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
var particles = [], amount = 5;
var x = 100; var y = 100;
var W, H;
var p, gradient;  
//dimensions
if(window.innerHeight){
    W = window.innerWidth, H = window.innerHeight;
}else{
    W = document.documentElement.clientWidth, H = document.documentElement.clientHeight;
}
canvas.width = W, canvas.height = H;
//array voor de meerdere particles
for(var i=0;i<amount;i++){
    particles.push(new create_particle());
}
function create_particle(){
    //random positie op canvas
    this.x = Math.random()*W;
    this.y = Math.random()*H;
    //random snelheid
    this.vx = Math.random()*20-10;
    this.vy = Math.random()*20-10;
    //Random kleur
    var r = Math.random()*255>>0;
    var g = Math.random()*255>>0;
    var b = Math.random()*255>>0;
    this.color = "rgba("+r+", "+g+", "+b+", 0.5)";
    this.radius = Math.random()*20+20;
}
window.requestAnimFrame = (function(){
  return  window.requestAnimationFrame       || 
          window.webkitRequestAnimationFrame || 
          window.mozRequestAnimationFrame    || 
          window.oRequestAnimationFrame      || 
          window.msRequestAnimationFrame     || 
          function( callback ){
            window.setTimeout(callback, 1000 / 60);
          };
})();
function draw(){
    canvas.width = canvas.width;
    canvas.height = canvas.height;
    //achtergrond tekenen
    //ctx.globalCompositeOperation = "source-over";
    //ctx.fillStyle = "rgba(0,0,0,0.5)";
    ctx.fillRect(0, 0, W, H);
    //ctx.globalCompositeOperation = "lighter";
    //teken cirkel
    for(var t=0; t<particles.length;t++){
        p = particles[t];
        //gradient
        gradient = ctx.createRadialGradient(p.x,p.y,0,p.x,p.y,p.radius);
        gradient.addColorStop(0,"white");
        gradient.addColorStop(0.4,"white");
        gradient.addColorStop(0.4,p.color);
        gradient.addColorStop(1,"black");
        ctx.beginPath();
        ctx.fillStyle = gradient;
        ctx.arc(p.x,p.y,p.radius,Math.PI*2,false)
        ctx.fill();
        //beweeg
        p.x+=p.vx;
        p.y+=p.vy;
        //canvas boundery detect
        if(p.x < -50)p.x = W+50;
        if(p.y < -50)p.y=H+50;
        if(p.x > W+50)p.x = -50;
        if(p.y > H+50)p.y = -50;
    }
}
(function animloop(){
    canvas.width = canvas.width;
    canvas.height = canvas.height;
    requestAnimFrame(animloop);
    draw();
})();
//resize?
function resizeCanvas(){ 
    canvas.height = W; 
    canvas.width = H;
    ctx.fillRect(0, 0, W, H);
}
if(window.addEventListener){
     window.addEventListener('resize', resizeCanvas, false);
}else{
     window.attachEvent('resize', resizeCanvas);
}
我试图更改一些代码(这也是最终版本)但它仍然泄漏。如果您使用此脚本并查看“任务管理器”或浏览器中的内存检查,您会发现它缓慢且不断地占用内存。
编辑:在添加 canvas.height 解决方案并移动一些声明后,脚本仍然泄漏!我必须说,看起来 Firefox 比 Chrome 更容易泄漏!
在开始另一组绘画之前尝试清洁画布。您可以通过重新设置其宽度和高度来清除它。
这是一些定向代码:
function draw() {
   canvas.width = canvas.width;
   canvas.height = canvas.height;
   /* draw */
}
| 归档时间: | 
 | 
| 查看次数: | 3125 次 | 
| 最近记录: |