您的位置:58脚本 > html中canvas HTML canvas scale() 方法

html中canvas HTML canvas scale() 方法

2023-05-31 22:32 HTML参考手册

html中canvas HTML canvas scale() 方法

html中canvas HTML canvas scale() 方法

html中canvas

HTML canvas scale() 方法

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

实例

绘制矩形,放大到 200%,然后再次绘制矩形:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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


定义和用法

scale() 方法缩放当前绘图至更大或更小。

注意:如果您对绘图进行缩放,所有之后的绘图也会被缩放。定位也会被缩放。如果您 scale(2,2),那么绘图将定位于距离画布左上角两倍远的位置。

JavaScript 语法:context.scale(scalewidth,scaleheight);

参数值

参数描述
scalewidth缩放当前绘图的宽度(1=100%,0.5=50%,2=200%,依次类推)。
scaleheight缩放当前绘图的高度(1=100%,0.5=50%,2=200%,依次类推)。


实例

更多实例

实例

绘制一个矩形;放大到 200%,再次绘制矩形;放大到 200%,再次绘制矩形;放大到 200%,再次绘制矩形:

YourbrowserdoesnotsupporttheHTMLcanvastag.var c=document.getElementById("myCanvas2");var ctx=c.getContext("2d");ctx.strokeRect(5,5,25,15);ctx.scale(2,2);ctx.strokeRect(5,5,25,15);ctx.scale(2,2);ctx.strokeRect(5,5,25,15);ctx.scale(2,2);ctx.strokeRect(5,5,25,15);

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);



HTML canvas 参考手册 HTML canvas 参考手册
阅读全文
以上是58脚本为你收集整理的html中canvas HTML canvas scale() 方法全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS