我在网页末尾有这段代码:
var canvas = document.getElementByID("canvas");
var ctx = canvas.getContext("2d");
canvas.style.width = $(window).width();
canvas.style.height = $(window).height();
ctx.arc(50, 50, 50, 0, Math.PI * 2, false);
$(window).resize(function () {
canvas.style.width = $(window).width();
canvas.style.height = $(window).height();
console.log("resize");
});
但什么也没有出现。我知道问题出在 arc 函数上,因为它ctx.fillRect(0, 0, 100, 100);
工作正常。
知道我做错了什么吗?
(是的,我确实有 JQuery)