function createCanvas(width, height){ var canvas = document.createElement("canvas"); // create a canvas element canvas.width = width; canvas.height = height; ...
確定! 回上一頁