canvas绘制矩形

如果后绘制的图形与前绘制的图形有重叠,则后绘制的图形会覆盖前绘制的图形

绘制矩形方法:

context.rect(x,y,width,height);// 指定矩形路径,后面还需要stroke()或fill()来绘制

context.fillRect(x,y,width,height);// 直接根据指定的路径来填充矩形
context.strokeRect(x,y,width,height);// 直接根据指定的路径来绘制矩形

eg1: rect(x,y,width,height)


    
    

eg1:结果

canvas绘制矩形_第1张图片

eg2: strokeRect(x,y,width,height)


    
    

eg2:结果

canvas绘制矩形_第2张图片

eg3: fillRect(x,y,width,height)


    
    

eg3:结果

canvas绘制矩形_第3张图片

 

你可能感兴趣的:(html5)