본 글의 예시에서는 js+canvas를 이용하여 직사각형을 그리는 방법을 설명하고 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
런닝 효과 스크린샷은 다음과 같습니다.
구체적인 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>canvas绘制矩形</title> <script type="text/javascript" > function draw(id) { var canvas = document.getElementById("canvas"); if (canvas) { var context = canvas.getContext("2d"); context.fillStyle = "#DDDDDD"; context.fillRect(0, 0, 400, 400); context.strokeStyle = "black"; context.fillStyle = "gray"; context.lineWidth = 5; context.fillRect(0,0,200,300); context.strokeRect(0,0,200,200); } else { return; } } function drawBorder(id) { var canvas = document.getElementById("canvas2"); if (canvas) { var context = canvas.getContext("2d"); context.fillStyle = "red"; context.strokeStyle = "black"; context.lineWidth = 5; context.fillRect(0,0, 300, 200); context.strokeRect(0,0,300,200); } else { return; } } window.onload = function () { draw("canvas"); drawBorder("canvas2"); } </script> </head> <body> <canvas id="canvas" width="400" style="background:red;" height="400"></canvas> <hr /> <canvas id="canvas2" width="400" height="400"></canvas> </body> </html>
더 많은 JavaScript 관련 콘텐츠에 관심이 있는 독자는 이 사이트의 특별 주제인 "JavaScript 애니메이션 특수 효과 및 기술 요약" 및 "JavaScript 모션 효과 및 기술 요약"을 확인할 수 있습니다. 기술"
이 기사가 JavaScript 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.