diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
commit | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch) | |
tree | d4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/canvas | |
parent | 33058f2b292b3a581333bdfb21b8f671898c5060 (diff) | |
download | translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2 translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip |
initial commit
Diffstat (limited to 'files/de/glossary/canvas')
-rw-r--r-- | files/de/glossary/canvas/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/files/de/glossary/canvas/index.html b/files/de/glossary/canvas/index.html new file mode 100644 index 0000000000..fcec40ae8a --- /dev/null +++ b/files/de/glossary/canvas/index.html @@ -0,0 +1,31 @@ +--- +title: Canvas +slug: Glossary/Canvas +translation_of: Glossary/Canvas +--- +<article class="text-content" id="wikiArticle"> +<p>Das {{Glossary("HTML")}}-Element <em>{{HTMLElement("canvas")}}</em> stellt einen leeren Grafikbereich bereit, auf dem spezielle {{Glossary("JavaScript")}}-{{Glossary("API","APIs")}} zeichnen können (wie zum Beispiel Canvas 2D oder {{Glossary("WebGL")}}).</p> + +<h2 id="Mehr_dazu">Mehr dazu</h2> + +<h3 id="Allgemeinwissen">Allgemeinwissen</h3> + +<ul> + <li>{{Interwiki("wikipedia", "Canvas element", "Canvas")}} auf Wikipedia (Englisch)</li> +</ul> + +<h3 id="Lerninhalte">Lerninhalte</h3> + +<ul> + <li><a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Canvas_tutorial">The Canvas tutorial on MDN</a></li> +</ul> + +<h3 id="Technische_Informationen">Technische Informationen</h3> + +<ul> + <li>Das HTML-Element {{HTMLElement("canvas")}} auf MDN</li> + <li><a href="https://developer.mozilla.org/en-US/docs/HTML/Canvas">Allgemein Canvas-Dokumentation auf MDN</a></li> + <li>{{domxref("CanvasRenderingContext2D")}}: The canvas 2D drawing API</li> + <li><a href="http://www.w3.org/TR/2dcontext/" rel="external">The Canvas 2D API specification</a></li> +</ul> +</article> |