Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は、html5 キャンバス要素と JavaScript のみを使用してゲームに取り組んでいます。サイズを変更できるようにする必要がありますが、ライブラリを使用したくありません
変数に割り当てることでキャンバスの幅と高さを簡単に変更でき、幅と高さのプロパティを使用できます。
var canvas = document.getElementById("ID of canvas here"); canvas.width = 500; canvas.height = 500;