Jump to content
Fórum Script Brasil
  • 0

(Resolvido)Limpar o canvas


vini_loock

Question

Olá, estou tentando fazer animação simples com o canvas, mas estou com um problema na hora de limpar o palco e renderizar o próximo frame, ele simplesmente não limpa o que foi criado com o método arc().

Segue o código:

(function(){
    
    var bg = {
        canvas: null,
        context: null,
        config: {
            width: 500,
            height: 500
        },
        color: {
            bgColor: '#00FF00',
            circleBorder: '#000000'
        },
        start: function(){
            this.canvas = document.getElementById('canvas');
            this.context = this.canvas.getContext('2d');
            this.config.width = this.canvas.offsetWidth;
            this.config.height = this.canvas.offsetHeight;
        },
        render: function(){
            this.context.clearRect(0, 0, this.config.width, this.config.height);
            this.context.fillStyle = this.color.bgColor;
            this.context.fillRect(0, 0, this.config.width, this.config.height);
            this.renderCircle(0);
        },
        renderCircle: function(n){
            this.context.strokeStyle = this.color.circleBorder;
            this.context.arc(this.circles[n].x, this.circles[n].y, this.circles[n].r, Math.PI*2, false);
            this.circles[n].x++;
            this.circles[n].y++;
            this.context.stroke();
        },
        circles: [{r: 50, x: 100, y: 60, dx: 1, dy: 1}]
    }

    window.addEventListener('load', function(){
        bg.start();
        bg.render();
        window.setInterval(function(){
            bg.render();
        }, 20);
    }, false);
    
})();

O objetivo era que ele mostrasse um circulo se movendo do topo esquerdo para o canto inferior direito, isso até acontece, mas fica um rastro onde ele passou, justamente por não estar "limpando" o canvas.

Eu já tinha feito algo semelhante antes, mas não sei o porque que agora está com este problema.

Vo ficar tentando aqui, se alguém consegui, da um help ai.

Vlw.

Vinicius.

Nossa, olha só, era só adicionar um context.beginPath();

Parece que ao postar no fórum a resposta vem automaticamente.

Desculpem-me, mas isso realmente não passou à minha cabeça antes.

Edited by vini_loock
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...