큐브 그래픽 코드
7991 단어 code
/span>html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>title>
head>
<body>
<div id="canvas-warp">
<canvas id="canvas"style="border:1px solid #aaaaaa;display: block;margin: 50px auto;">
canvas>
div>
<script>
window.onload=function(){
var canvas=document.getElementById("canvas");
canvas.width=800;
canvas.height=600;
var context=canvas.getContext("2d");
context.beginPath();
context.rect(0,0,800,600);
context.fillStyle="#AA9033";
context.fill();
context.beginPath();
for(var i=0; i<=20; i++){
drawWhiteRect(context, 200 + 10 * i, 100 + 10 * i, 400 - 20 * i, 400 - 20 * i);
drawBlackRect(context, 205 + 10 * i, 105 + 10 * i, 390 - 20 * i, 390 - 20 * i);
}
context.beginPath();
context.rect(395,295,5,5);
context.fillStyle="black";
context.lineWidth=5;
context.fill();
context.stroke();
}
function drawBlackRect(cxt,x,y,width,height){
cxt.beginPath();
cxt.rect(x,y,width,height);
cxt.lineWidth=5;
cxt.strokeStyle="black";
cxt.stroke();
}
function drawWhiteRect(cxt,x,y,width,height){
cxt.beginPath();
cxt.rect(x,y,width,height);
cxt.lineWidth=5;
cxt.strokeStyle="white";
cxt.stroke();
}
script>
body>
html>
body>
html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
소스 코드가 포함된 Python 프로젝트텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.