HTML canvas addColorStop() 方法

HTML5 Canvas 参考手册

实例

定义一个从黑到白的渐变,作为矩形的填充样式:

定义一个从黑到白的渐变,作为矩形的填充样式。.png

JavaScript:

  1. var c=document.getElementById('myCanvas');
  2. var ctx=c.getContext('2d');
  3. var grd=ctx.createLinearGradient(0,0,170,0);
  4. grd.addColorStop(0,"black");
  5. grd.addColorStop(1,"white");
  6. ctx.fillStyle=grd;
  7. ctx.fillRect(20,20,150,100);

浏览器支持

Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 addColorStop() 方法。

注释:Internet Explorer 8 或更早的浏览器不支持 <canvas> 元素。

定义和用法

addColorStop() 方法规定 gradient 对象中的颜色和位置。

addColorStop() 方法与 createLinearGradient()createRadialGradient() 一起使用。

注释:您可以多次调用 addColorStop() 方法来改变渐变。如果您不对 gradient 对象使用该方法,那么渐变将不可见。为了获得可见的渐变,您需要创建至少一个色标。

JavaScript 语法: gradient.addColorStop(stop,color);

参数值

参数 描述
stop 介于 0.0 与 1.0 之间的值,表示渐变中开始与结束之间的位置。
color 在结束位置显示的 CSS 颜色值

更多实例

通过多个 addColorStop() 方法来定义渐变:

通过多个 addColorStop() 方法来定义渐变.png

JavaScript:

  1. var c=document.getElementById("myCanvas");
  2. var ctx=c.getContext("2d");
  3. var grd=ctx.createLinearGradient(0,0,170,0);
  4. grd.addColorStop(0,"black");
  5. grd.addColorStop("0.3","magenta");
  6. grd.addColorStop("0.5","blue");
  7. grd.addColorStop("0.6","green");
  8. grd.addColorStop("0.8","yellow");
  9. grd.addColorStop(1,"red");
  10. ctx.fillStyle=grd;
  11. ctx.fillRect(20,20,150,100);