簡體   English   中英

html5 canvas object圖紙

[英]html5 canvas object drawing

我在 canvas 很新,但我試圖畫一個下降的 object。 首先我試圖只畫一個 object,但它不起作用。 我怎么能畫一個 object (如果你可以這么好,但沒有必要讓我知道如何讓它移動)? 或者我在這里做錯了什么? 代碼:

let c, ctx;

window.onload = function(){
    
    c = document.getElementById("boom");
    ctx = c.getContext("2d");
    c.width = window.innerwidth;
    c.height = window.innerHeight;

    setup();
    draw();
};

function draw(){
    //window.requestAnimationFrame(draw);
    ctx.fillStyle = "rgba(0,0,0,1)";
    ctx.fillRect(0, 0, c.width, c.height);
    ctx.fillStyle = "red";
    ctx.fillRect(100, 100, 100, 100);
    regen.push(new regen(this.x, this.y, this.w, this.h, this.color));
};

function setup(){

}

function regen(x, y, w, h, color){
    this.x = 100;
    this.y = 100;
    this.width = 20;
    this.height = 40;
    this.color = "blue";
    //this.xSpeed = 4;
    //this.ySpeed = 4;

    this.draw = function(){

        //this.update = function(){
            //this.x += this.xSpeed;
            //this.y += this.ySpeed; 
        //}
    }
}



function getRndFloat(min, max) {
    return Math.random() * (max - min + 1) + min;
}

你在innerwidth有錯字:它必須是innerWidth 但是你沒有定義,你的 canvas 沒有寬度

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM