<!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
-->
<head>
<title>Reference for gradient</title> <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=441780 -->
</head>
<body onload="go()">
<canvas width="400" height="400"></canvas>
<style>
* { margin: 0; }
</style>
<script>
function go() {
let canvas = document.querySelector('canvas');
let ctx = canvas.getContext('2d');
function createCircleWithGradient(x, y, r, fx, fy) {
let gradient = ctx.createRadialGradient(fx, y, 0, x, y, r);
gradient.addColorStop(0, 'lime');
gradient.addColorStop(1, 'red');
ctx.beginPath();
ctx.arc(x, y, 50, 0, 2 * Math.PI);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.