From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/he/web/html/element/canvas/index.html | 70 ----------------------------- 1 file changed, 70 deletions(-) delete mode 100644 files/he/web/html/element/canvas/index.html (limited to 'files/he/web/html/element/canvas/index.html') diff --git a/files/he/web/html/element/canvas/index.html b/files/he/web/html/element/canvas/index.html deleted file mode 100644 index eaac2dff23..0000000000 --- a/files/he/web/html/element/canvas/index.html +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: ': תגית ליצירת צורות דו מימדיות' -slug: Web/HTML/Element/canvas -translation_of: Web/HTML/Element/canvas ---- -
{{HTMLRef}}
- -

תגית <canvas> מאפשרת ליצור צורות דו מימדיות ולהטמיע אותן במסמך ה-HTML. 
- אלמנט זה יוצר אזור מלבני בו ניתן לצייר באמצעות קוד.

- -
 
- - - - - - - - - - - - - - - - -
קטגוריהסקריפטים והטמעת תכנים
תגיות הורים מורשות<abbr>, <audio>, <b>, <bdo>, <br>, <button>, <canvas>, <cite>, <code>, <command>, <data>, <datalist>, <dfn>, <em>, <embed>, <i>, <iframe>, <img>, <input>, <kbd>, <keygen>, <label>, <mark>, <math>, <meter>, <noscript>, <object>, <output>, <progress>, <q>, <ruby>, <samp>, <script>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <svg>, <textarea>, <time>, <var>, <video>, <wbr> 
-  
ממשק DOM{{domxref("HTMLCanvasElement")}}
- -

תארים

- -

תגית זו נכללת ברשימת התארים הגלובליים.

- -

{{htmlattrdef("height")}} - תכונה להגדרת גובה.

- -

{{htmlattrdef("width")}} - תכונה להגדרת רוחב.

- -
-
-

דוגמא - כותרת ופסקה

- -
<canvas id="canvas" width="300" height="300">
-  An alternative text describing what your canvas displays.
-</canvas>
- -

דדגכ

- -
<script>
-var canvas = document.getElementById('canvas');
-var ctx = canvas.getContext('2d');
-ctx.fillStyle = 'green';
-ctx.fillRect(10, 10, 100, 100);
-</script>
-
-
- -

הערות

- -

* מומלץ להזין תוכן בין התגיות על מנת שזה יופיע במידה והדפדפן אינו תומך ב-Canvas.
- * חובה להוסיף תג סגירה <canvas/>.
-  

- -

ראה גם

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