HTML5 canvas基本绘图之填充样式如何实现

又是一场大雪过后,天空像海一样蔚蓝,甚至比海更加晶莹剔透。千峰万岭,极目望去,尽是白色,闪耀着一片连接不断的银光。山顶积雪未融,如白银宫网。

<canvas></canvas>是HTML5中新增的标签,用于绘制图形,实际上,这个标签和其他的标签一样,其特殊之处在于该标签可以获取一个CanvasRenderingContext2D对象,我们可以通过JavaScript脚本来控制该对象进行绘图。

<canvas></canvas>只是一个绘制图形的容器,除了id、class、style等属性外,还有height和width属性。在<canvas>>元素上绘图主要有三步:

1.获取<canvas>元素对应的DOM对象,这是一个Canvas对象;
2.调用Canvas对象的getContext()方法,得到一个CanvasRenderingContext2D对象;
3.调用CanvasRenderingContext2D对象进行绘图。

填充样式

前面用到的fillStyle和strokeStyle除了设置颜色外,还能设置其他填充样式,这里以fillStyle为例:

•线性渐变

使用步骤
(1)var grd = context.createLinearGradient( xstart , ystart, xend , yend )创建一个线性渐变,设置起始坐标和终点坐标;
(2)grd.addColorStop( stop , color )为线性渐变添加颜色,stop为0~1的值;
(3)context.fillStyle=grd将赋值给context。

•径向渐变
该方法与线性渐变使用方法类似,只是第一步接收的参数不一样
var grd = context.createRadialGradient(x0 , y0, r0 , x1 , y1 , r1 );接收起始圆心的坐标和圆半径以及终点圆心的坐标和圆的半径。

•位图填充
createPattern( img , repeat-style )使用图片填充,repeat-style可以取repeat、repeat-x、repeat-y、no-repeat。

JavaScript Code复制内容到剪贴板
  1. varcanvas=document.getElementById("canvas");
  2. varcontext=canvas.getContext("2d");
  3. //线性渐变
  4. vargrd=context.createLinearGradient(10,10,100,350);
  5. grd.addColorStop(0,"#1EF9F7");
  6. grd.addColorStop(0.25,"#FC0F31");
  7. grd.addColorStop(0.5,"#ECF811");
  8. grd.addColorStop(0.75,"#2F0AF1");
  9. grd.addColorStop(1,"#160303");
  10. context.fillStyle=grd;
  11. context.fillRect(10,10,100,350);
  12. //径向渐变
  13. vargrd=context.createRadialGradient(325,200,0,325,200,200);
  14. grd.addColorStop(0,"#1EF9F7");
  15. grd.addColorStop(0.25,"#FC0F31");
  16. grd.addColorStop(0.5,"#ECF811");
  17. grd.addColorStop(0.75,"#2F0AF1");
  18. grd.addColorStop(1,"#160303");
  19. context.fillStyle=grd;
  20. context.fillRect(150,10,350,350);
  21. //位图填充
  22. varbgimg=newImage();
  23. bgimg.src="background.jpg";
  24. bgimg.onload=function(){
  25. varpattern=context.createPattern(bgimg,"repeat");
  26. context.fillStyle=pattern;
  27. context.strokeStyle="#F20B0B";
  28. context.fillRect(600,100,200,200);
  29. context.strokeRect(600,100,200,200);
  30. };

效果如下:

到此这篇关于HTML5 canvas基本绘图之填充样式如何实现就介绍到这了。只有认识自己,才能接受别人。更多相关HTML5 canvas基本绘图之填充样式如何实现内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: canvas