From 4c559216ba0d5be0c194f9ac046392e6cbb28c50 Mon Sep 17 00:00:00 2001 From: Mikhail Prokudin <39721766+mirexdoors@users.noreply.github.com> Date: Mon, 22 Mar 2021 20:06:49 +0700 Subject: add ru translate for HTMLCanvasElement.height page (#229) * add ru translate for HTMLCanvasElement.height page * fixes for definition block & specification block --- .../ru/web/api/htmlcanvaselement/height/index.html | 83 ++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 files/ru/web/api/htmlcanvaselement/height/index.html diff --git a/files/ru/web/api/htmlcanvaselement/height/index.html b/files/ru/web/api/htmlcanvaselement/height/index.html new file mode 100644 index 0000000000..bb82519fed --- /dev/null +++ b/files/ru/web/api/htmlcanvaselement/height/index.html @@ -0,0 +1,83 @@ +--- +title: HTMLCanvasElement.height +slug: Web/API/HTMLCanvasElement/height +translation_of: Web/API/HTMLCanvasElement/height +tags: +- API +- Canvas +- HTMLCanvasElement +- Property +--- +
+
+
{{APIRef("Canvas API")}}
+
+
+ +

Свойство HTMLCanvasElement.height — это положительное + целое число, отображающее значение HTML атрибута {{htmlattrxref("height", "canvas")}} элемента {{HTMLElement("canvas")}} в CSS пикселях. Если атрибут не указан или + для него задано недопустимое значение, например отрицательное, то используется значение по умолчанию 150

+ +

Одно из двух свойств (другое — {{domxref("HTMLCanvasElement.width")}}), контролирующих размер холста.

+ +

Синтаксис

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

Примеры

+ +

Возьмём следующий {{HTMLElement("canvas")}} элемент:

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

Вы можете получить высоту холста следующим образом:

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

Спецификации

+ + + + + + + + + + + + + + + + + + + + + + + + +
СпецификацияСтатусКомментарий
{{SpecName('HTML WHATWG', "scripting.html#attr-canvas-height", + "HTMLCanvasElement.height")}}{{Spec2('HTML WHATWG')}}Нет изменений с последней версии {{SpecName('HTML5 W3C')}}
{{SpecName('HTML5.1', "scripting-1.html#attr-canvas-height", + "HTMLCanvasElement.height")}}{{Spec2('HTML5.1')}}
{{SpecName('HTML5 W3C', "scripting-1.html#attr-canvas-height", + "HTMLCanvasElement.height")}}{{Spec2('HTML5 W3C')}}Версия {{SpecName('HTML WHATWG')}} содержит исходное определение. +
+ +

Поддержка браузерами

+ +

{{Compat("api.HTMLCanvasElement.height")}}

+ +

Смотрите также

+ + -- cgit v1.2.3-54-g00ecf