<meta name="viewport" content="initial-scale=1.0">
<title>js</title>
</head>
<body>
<canvas id='canvas' width="300" height="300"></canvas>
<script>
let canvas = document.getElementById("canvas");
if(canvas.getContext){
let ctx = canvas.getContext("2D");
ctx.fillStyle = "red";
}
</script>
</body>
</html>
Что здесь не так?
Ну ты выставил стиль заливки, а заливку не сделал.
Обсуждают сегодня