首页 > 作文

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

更新时间:2023-04-03 04:54:23 阅读: 评论:0

<canvas></canvas>是html5中新增的标签,用于绘制图形,实际上,这个标签和其他的标签一样,其特殊之处在于该标签可以获取一个ca跆拳道红带nvasrenderingcontext2d对象,我们可以通过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
复制内容到剪贴板

varcanvas=document.getelementbyid(“canvas”); varcontext=canvas.getcontext(“2d”); //线性渐变 vargrd=context.createlineargradient(10,10,100,350); grd.addcolorstop(0,“#1ef9f7”); grd.addcolorstop(0.25,“#fc0f31”); grd.addcolorstop(0.5,“#ecf811”); grd.addcolorstop(0.75,“#2f0af1”); grd.addcolorstop(1,“#160303”); context.fillstyle=grd; context.fillrect(10,10,100,350); //径向渐变 vargrd=context.create内流区和外流区的分界线radialgradient(325,200,0,325,200,200); grd.addcolorstop(0,“#1ef9f7”); grd.addcolo游戏人间歌词rstop(0.25,“#fc0f31”); grd.addcolorstop(0.5,“#ecf811”); grd.addcolorstop(0.75,“#2f0af1”); grd.addcolorstop(1,“#160303”); context.fillstyle=grd; context.fillrect(150,10,350,350); //位图填充 varbgimg=newimage(); bgimg.src=“background.jpg”; bgimg.onload=function(){ varpattern=context.createpattern(bgimg,“repeat”); conte节约粮食活动方案xt.fillstyle=pattern; con化学沉淀text.strokestyle=“#f20b0b”; context.fillrect(600,100,200,200); context.strokerect(600,100,200,200); };

效果如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-03 04:54:21,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/2962ae8fd5ee1dfd020f9542d6221605.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:HTML5 canvas基本绘图之填充样式实现.doc

本文 PDF 下载地址:HTML5 canvas基本绘图之填充样式实现.pdf

标签:对象   线性   坐标   标签
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图