We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Canvas의 메서드
기능 : 선형 그라데이션 지정
사용방법 예제
var gradient =context.createLinearGradient(0,0,150,150);
gradient.addColorStop(0.0,'red');
context.fillStyle = gradient;
context.fillRect(0,0,150,150);
There was an error while loading. Please reload this page.