JQuery Canvas를 이용한 무지개 만들기
JQuery를 이용하여 무지개를 만들어 보도록 하자 Canvas는 포토샵의 Layer개념으로 봐도 된다. .gamelayer { position: absoulte; top : 0px; left : 0px; } $(document).ready(function() { var canvas = $('#mycanvas')[0]; var ctx = canvas.getContext('2d'); // 무지개 만들기 //fillRect(x좌표, y좌표, 가로크기, 세로크기) ctx.fillStyle = 'rgb(255,0,0)'; ctx.fillRect(0, 0, 50, 100); ctx.fillStyle = 'rgb(255,100,0)'; ctx.fillRect(50, 0, 50, 100); ctx.fillStyle ..