blob: 751c7c1482eabc2d111b69648eb5436838067a09 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Conic gradient</title>
</head>
<body>
<canvas id="c"></canvas>
<script type="text/javascript">
const canvas = document.getElementById('c');
const ctx = canvas.getContext('2d');
const grad = ctx.createConicGradient(15, 100, 50);
grad.addColorStop(0, "red");
grad.addColorStop(0.2, "red");
grad.addColorStop(0.2, "orange");
grad.addColorStop(0.4, "orange");
grad.addColorStop(0.4, "yellow");
grad.addColorStop(0.6, "yellow");
grad.addColorStop(0.6, "green");
grad.addColorStop(0.8, "green");
grad.addColorStop(0.8, "blue");
ctx.fillStyle = grad;
ctx.fillRect(0, 0, canvas.width, canvas.height);
</script>
</body>
</html>