集册 HTML 参考教程 HTML canvas clip() 方法

HTML canvas clip() 方法

Xebcnor     最近更新时间:2019-09-24 03:25:39

359

HTML canvas clip() 方法

HTML canvas 参考手册 HTML canvas 参考手册

实例

从画布中剪切 200*120 像素的矩形区域。然后,绘制一个红色矩形。只有被剪切区域内的红色矩形部分是可见的:

YourbrowserdoesnotsupporttheHTML5canvastag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
// Clip a rectangular area
ctx.rect(50,20,200,120);
ctx.stroke();
ctx.clip();
// Draw red rectangle after clip()
ctx.fillStyle="red";
ctx.fillRect(0,0,150,100);
</script>

运行实例

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 clip() 方法。

注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。

定义和用法

clip()方法从原始画布中剪切任意形状和尺寸。

展开阅读全文