HTMLCanvasElement.height - Web APIs 编辑
The HTMLCanvasElement.height
property is a positive integer
reflecting the height
HTML attribute of the <canvas>
element interpreted in CSS pixels. When the attribute is not specified, or if it is set to an invalid value, like a negative, the default value of 150
is used.
This is one of the two properties, the other being HTMLCanvasElement.width
, that controls the size of the canvas.
Syntax
var pxl = canvas.height; canvas.height = pxl;
Examples
Given this <canvas>
element:
<canvas id="canvas" width="300" height="300"></canvas>
You can get the height of the canvas with the following code:
var canvas = document.getElementById('canvas');
console.log(canvas.height); // 300
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLCanvasElement.height' in that specification. | Living Standard | No change since the latest snapshot, HTML5 |
HTML 5.1 The definition of 'HTMLCanvasElement.height' in that specification. | Recommendation | |
HTML5 The definition of 'HTMLCanvasElement.height' in that specification. | Recommendation | Snapshot of the HTML Living Standard containing the initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- The interface defining it,
HTMLCanvasElement
. - The other property controlling the size of the canvas,
HTMLCanvasElement.width
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论