-
createPattern(img,repeat-style)查看全部
-
fillStyle除了可以设置颜色,还可以设置渐变(线性渐变和径向渐变)。 线性渐变: //两个坐标构成一个线段,即渐变线(用于定义渐变的方向和尺度) step1: var grd = context.createLinearGradient( xstart, ystart, xend, yend ); //渐变线上的关键色(参数stop是一个浮点值,决定关键色的位置;参数color决定关键色的颜色) step2: grd.addColorStop( stop, color );查看全部
-
线性渐变 createLinearGradient(x1,y1,x2,y2); addColorStop(stop, color);查看全部
-
var grd=context.createLinearGradient(xstart,ystart,xend,yend); grd.addColorStop(stop,color);查看全部
-
transform( a, b, c, d, e, f )查看全部
-
setTransform( a, b, c, d, e, f ); //忽略之前所有的transform(),进行全新的变换查看全部
-
scale( sx, sy )操作具有副作用,表现为不仅对图像的大小进行缩放操作,还对图像的其他数值属性(比如边框的宽度,左上角的坐标等等)进行相应的缩放操作。查看全部
-
save() restore() 保存与恢复现场查看全部
-
save() restore() 保存与恢复现场查看全部
-
位移:translate( x, y ):把图像原点位移到(x, y)的位置 旋转:rotate( deg ):旋转 deg 度数 缩放:scale( sx, sy ):在横向进行 sx 倍的缩放,在纵向进行 sy 倍的缩放查看全部
-
默认:miter 尖角、 bevel 斜接、 round 圆角.查看全部
-
ineJoin 相交的效果 默认:miter 尖角、 bevel 斜接、 round 圆角. miterLimit 当lineJoin属性为miter时 内角距离的最大值(线条实线的尖角和宽度外的线相夹角),超过的话将使用bevel.默认为10.查看全部
-
lineJoin miter bevel查看全部
-
使用context.lineCap的话。可以使用context.beginPath();但是别闭合。闭合后context.lineCap无效 lineCap:butt(default),round,square;查看全部
-
setTransform( a, b, c, d, e, f ); //忽略之前所有的transform(),进行全新的变换查看全部
举报
0/150
提交
取消