HTML5 Canvas Draw Linear Gradient
HTML5 Canvas Draw Linear Gradient
Example
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
// Create gradient
var grd = ctx.createLinearGradient(0,0,200,0);
grd.addColorStop(0,"red");
grd.addColorStop(1,"white");
// Fill with gradient
ctx.fillStyle = grd;
ctx.fillRect(10,10,150,80)
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
// Create gradient
var grd = ctx.createLinearGradient(0,0,200,0);
grd.addColorStop(0,"red");
grd.addColorStop(1,"white");
// Fill with gradient
ctx.fillStyle = grd;
ctx.fillRect(10,10,150,80);
</script>
</body>
</html>
게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 707 | CSS | 12년 전 | 12402 | ||
| 706 | 기타 | 12년 전 | 5092 | ||
| 705 | CSS | 12년 전 | 5668 | ||
| 704 | 기타 | 12년 전 | 12105 | ||
| 703 | 웹접근성 | 12년 전 | 10087 | ||
| 702 | 기타 | 12년 전 | 5146 | ||
| 701 | CSS | 12년 전 | 3112 | ||
| 700 | 반응형 |
kiplayer
|
12년 전 | 6803 | |
| 699 | CSS |
kiplayer
|
12년 전 | 6426 | |
| 698 | 웹접근성 |
|
12년 전 | 36930 | |
| 697 | HTML | 12년 전 | 4343 | ||
| 696 | HTML | 12년 전 | 8076 | ||
| 695 | CSS | 12년 전 | 5452 | ||
| 694 | HTML | 12년 전 | 5815 | ||
| 693 | CSS | 12년 전 | 3885 | ||
| 692 | 웹접근성 |
프로프리랜서
|
12년 전 | 3775 | |
| 691 | 웹접근성 |
|
12년 전 | 12462 | |
| 690 | CSS | 12년 전 | 4216 | ||
| 689 | 웹접근성 | 12년 전 | 5873 | ||
| 688 | CSS | 12년 전 | 4925 | ||
| 687 | HTML | 12년 전 | 7386 | ||
| 686 | CSS | 13년 전 | 5840 | ||
| 685 | 기타 | 13년 전 | 10611 | ||
| 684 | HTML |
후라보노보노
|
13년 전 | 4805 | |
| 683 | HTML | 13년 전 | 4339 | ||
| 682 | 기타 |
|
13년 전 | 3517 | |
| 681 | CSS | 13년 전 | 3663 | ||
| 680 | HTML | 13년 전 | 6305 | ||
| 679 | 반응형 | 13년 전 | 6589 | ||
| 678 | CSS | 13년 전 | 3814 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기