HTMLCanvasElement.height - Web API 接口参考 编辑

HTMLCanvasElement.height 属性是一个正整数 ,使用了<canvas> 元素的HTML 属性height来反映该元素高度的 CSS 像素值。当该属性没有被定义,或被定义为一个无效值(如负值)时, 将使用150作为它的默认值。

控制canvas元素大小的属性有两个,这是其中一个,还有一个是HTMLCanvasElement.width

语法

var pxl = canvas.height;
canvas.height = pxl;

示例

给出这样一个<canvas> 元素:

<canvas id="canvas" width="300" height="300"></canvas>

可以通过以下代码获得这个canvas元素的高度:

var canvas = document.getElementById('canvas');
console.log(canvas.height); // 300

规范

规范状态备注
HTML Living Standard
HTMLCanvasElement.height
Living StandardNo change since the latest snapshot, HTML5
HTML 5.1
HTMLCanvasElement.height
Recommendation 
HTML5
HTMLCanvasElement.height
RecommendationSnapshot of the HTML Living Standard containing the initial definition.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support4(Yes)3.6 (1.9.2)993.1
FeatureAndroidChrome for AndroidEdgeFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support(Yes)(Yes)(Yes)1.0 (1.9.2)(Yes)(Yes)(Yes)

其他

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:70 次

字数:5669

最后编辑:6 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文