mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
436 B
HTML
18 lines
436 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<canvas width="500" height="500"></canvas>
|
||
|
<script>
|
||
|
var canvas = document.getElementsByTagName('canvas')[0];
|
||
|
var ctx = canvas.getContext('2d');
|
||
|
|
||
|
var lineargradient = ctx.createLinearGradient(000,000,500,500);
|
||
|
lineargradient.addColorStop(0,'red');
|
||
|
lineargradient.addColorStop(1,'black');
|
||
|
ctx.fillStyle = lineargradient;
|
||
|
ctx.beginPath();
|
||
|
ctx.rect(00, 00, 250, 250);
|
||
|
ctx.fill();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|