강좌 & 팁
rgb()
설명
RGB 색값을 만든다.
분류
없음
형태
rgb( R, G, B );
rgba( R, G, B, A );
인수
R 빨간색 성분 0 ~ 255
G 초록색 성분 0 ~ 255
B 파란색 성분 0 ~ 255
A 투명도 성분 0 ~ 1.0
반환
없음
예제
<html>
<head>
<script type="application/javascript">
function draw() {
var canvas = document.getElementById("canvas");
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
결과