aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/canvas_api
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-27 11:32:55 -0400
committerGitHub <noreply@github.com>2021-07-27 11:32:55 -0400
commit9fb44756a5432219d159d6892341e0a9e0582bb2 (patch)
treefa6d49a8623c736a96f644d69c86d958b778664c /files/de/web/api/canvas_api
parentf223964e7c5c62237914625780565de982015f04 (diff)
downloadtranslated-content-9fb44756a5432219d159d6892341e0a9e0582bb2.tar.gz
translated-content-9fb44756a5432219d159d6892341e0a9e0582bb2.tar.bz2
translated-content-9fb44756a5432219d159d6892341e0a9e0582bb2.zip
remove link 'title' attributes that's just the 'href' (de) (#1735)
Diffstat (limited to 'files/de/web/api/canvas_api')
-rw-r--r--files/de/web/api/canvas_api/tutorial/basic_animations/index.html2
-rw-r--r--files/de/web/api/canvas_api/tutorial/basic_usage/index.html2
-rw-r--r--files/de/web/api/canvas_api/tutorial/drawing_shapes/index.html2
-rw-r--r--files/de/web/api/canvas_api/tutorial/drawing_text/index.html2
-rw-r--r--files/de/web/api/canvas_api/tutorial/index.html20
5 files changed, 14 insertions, 14 deletions
diff --git a/files/de/web/api/canvas_api/tutorial/basic_animations/index.html b/files/de/web/api/canvas_api/tutorial/basic_animations/index.html
index 89fa97fd4d..20c72d98cb 100644
--- a/files/de/web/api/canvas_api/tutorial/basic_animations/index.html
+++ b/files/de/web/api/canvas_api/tutorial/basic_animations/index.html
@@ -222,7 +222,7 @@ window.requestAnimationFrame(clock);</pre>
<h2 id="A_looping_panorama">A looping panorama</h2>
-<p>In this example, a panorama is scrolled left-to-right. We're using <a href="http://commons.wikimedia.org/wiki/File:Capitan_Meadows,_Yosemite_National_Park.jpg" title="http://commons.wikimedia.org/wiki/File:Capitan_Meadows,_Yosemite_National_Park.jpg">an image of Yosemite National Park</a> we took from Wikipedia, but you could use any image that's larger than the canvas.</p>
+<p>In this example, a panorama is scrolled left-to-right. We're using <a href="http://commons.wikimedia.org/wiki/File:Capitan_Meadows,_Yosemite_National_Park.jpg">an image of Yosemite National Park</a> we took from Wikipedia, but you could use any image that's larger than the canvas.</p>
<pre class="brush: js">var img = new Image();
diff --git a/files/de/web/api/canvas_api/tutorial/basic_usage/index.html b/files/de/web/api/canvas_api/tutorial/basic_usage/index.html
index 1cfa846355..418414e3af 100644
--- a/files/de/web/api/canvas_api/tutorial/basic_usage/index.html
+++ b/files/de/web/api/canvas_api/tutorial/basic_usage/index.html
@@ -57,7 +57,7 @@ original_slug: Web/Guide/HTML/Canvas_Tutorial/Grundlagen
<h2 id="Der_Kontext">Der Kontext</h2>
-<p>{{HTMLElement("canvas")}} stellt mehrere Kontexte zum Zeichnen auf dem canvas zur Verfügung. Der Standardkontext ist der 2D-Kontext. Es gibt noch <a href="/en-US/docs/Web/WebGL" title="/en-US/docs/Web/WebGL">WebGL</a> (3D context) basierend auf <a class="external" href="http://www.khronos.org/opengles/" rel="external" title="http://en.wikipedia.org/wiki/OpenGL_ES">OpenGL ES</a>.</p>
+<p>{{HTMLElement("canvas")}} stellt mehrere Kontexte zum Zeichnen auf dem canvas zur Verfügung. Der Standardkontext ist der 2D-Kontext. Es gibt noch <a href="/en-US/docs/Web/WebGL" title="/en-US/docs/Web/WebGL">WebGL</a> (3D context) basierend auf <a class="external" href="http://www.khronos.org/opengles/" rel="external">OpenGL ES</a>.</p>
<p>Zuerst ist das canvas leer. Mithilfe von JavaScript definiert man den Kontext und zeichnet mit diesem. Das {{HTMLElement("canvas")}}-Element hat eine <a href="/en-US/docs/Web/API/HTMLCanvasElement#Methods" title="/en-US/docs/Web/API/HTMLCanvasElement#Methods">Methode</a> <code>getContext()</code>, mit der der Kontext definiert wird. <code>getContext()</code> benötigt nur einen String als Argument, den Typ des Kontextes. Für 2D-Grafiken ist dieser String "2d".</p>
diff --git a/files/de/web/api/canvas_api/tutorial/drawing_shapes/index.html b/files/de/web/api/canvas_api/tutorial/drawing_shapes/index.html
index f12dc90556..5a7ed7c7c4 100644
--- a/files/de/web/api/canvas_api/tutorial/drawing_shapes/index.html
+++ b/files/de/web/api/canvas_api/tutorial/drawing_shapes/index.html
@@ -257,7 +257,7 @@ Dieses Beispiel zeigt Kreisbügen mit den unterschiedlichsten Parametern:<br>
<h3 id="Bezier_und_quadratische_Kurven">Bezier und quadratische Kurven</h3>
-<p><a class="external" href="http://de.wikipedia.org/wiki/B%C3%A9zierkurve" rel="external" title="http://en.wikipedia.org/wiki/B%C3%A9zier_curve">Bézierkurven</a> sind in kubischer und quadratischer Form enthalten. Damit kann man ziemlich komplexe Strukturen zeichnen.</p>
+<p><a class="external" href="http://de.wikipedia.org/wiki/B%C3%A9zierkurve" rel="external">Bézierkurven</a> sind in kubischer und quadratischer Form enthalten. Damit kann man ziemlich komplexe Strukturen zeichnen.</p>
<dl>
<dt><code>quadraticCurveTo(cp1x, cp1y, x, y)</code></dt>
diff --git a/files/de/web/api/canvas_api/tutorial/drawing_text/index.html b/files/de/web/api/canvas_api/tutorial/drawing_text/index.html
index 78ecf28150..dce56e22b7 100644
--- a/files/de/web/api/canvas_api/tutorial/drawing_text/index.html
+++ b/files/de/web/api/canvas_api/tutorial/drawing_text/index.html
@@ -79,7 +79,7 @@ original_slug: Web/Guide/HTML/Canvas_Tutorial/Drawing_text
<p>These properties might be familiar to you, if you have worked with CSS before.</p>
-<p>The following diagram from the <a class="external" href="http://www.whatwg.org/" title="http://www.whatwg.org/">WHATWG</a> demonstrates the various baselines supported by the <code>textBaseline</code> property.<img alt="The top of the em square is
+<p>The following diagram from the <a class="external" href="http://www.whatwg.org/">WHATWG</a> demonstrates the various baselines supported by the <code>textBaseline</code> property.<img alt="The top of the em square is
roughly at the top of the glyphs in a font, the hanging baseline is
where some glyphs like आ are anchored, the middle is half-way
between the top of the em square and the bottom of the em square,
diff --git a/files/de/web/api/canvas_api/tutorial/index.html b/files/de/web/api/canvas_api/tutorial/index.html
index 99ff410a90..8aa9787cb5 100644
--- a/files/de/web/api/canvas_api/tutorial/index.html
+++ b/files/de/web/api/canvas_api/tutorial/index.html
@@ -35,18 +35,18 @@ original_slug: Web/Guide/HTML/Canvas_Tutorial
<li><a href="/en-US/docs/HTML/Canvas" title="HTML/Canvas">Canvas topic page</a></li>
<li><a href="/en-US/docs/HTML/Canvas/Drawing_Graphics_with_Canvas" title="Drawing_Graphics_with_Canvas">Drawing Graphics with Canvas</a></li>
<li><a href="/en-US/docs/tag/Canvas_examples" title="tag/Canvas_examples">Canvas examples</a></li>
- <li><a class="external" href="http://html5tutorial.com" title="http://html5tutorial.com">HTML5 Tutorial</a></li>
+ <li><a class="external" href="http://html5tutorial.com">HTML5 Tutorial</a></li>
<li><a href="/en-US/docs/Drawing_text_using_a_canvas" title="Drawing_text_using_a_canvas">Drawing Text Using a Canvas</a></li>
<li><a class="external" href="http://developer.apple.com/library/safari/#documentation/AudioVideo/Conceptual/HTML-canvas-guide/AddingText/AddingText.html#//apple_ref/doc/uid/TP40010542-CH6-SW4" title="Adding Text to Canvas">Adding Text to Canvas</a></li>
- <li><a class="external" href="http://canvimation.github.com/" title="http://canvimation.github.com/">Canvas Drawing and Animation Application</a></li>
- <li><a class="external" href="http://billmill.org/static/canvastutorial/" title="http://billmill.org/static/canvastutorial/">Interactive canvas tutorial</a></li>
- <li><a class="external" href="http://blog.nihilogic.dk/2009/02/html5-canvas-cheat-sheet.html" title="http://blog.nihilogic.dk/2009/02/html5-canvas-cheat-sheet.html">Canvas Cheat Sheet with all attributes and methods</a></li>
- <li><a class="external" href="http://visitmix.com/labs/ai2canvas/" title="http://visitmix.com/labs/ai2canvas/">Adobe Illustrator to Canvas plug-in</a></li>
- <li><a class="external" href="http://www.html5canvastutorials.com/" title="http://www.html5canvastutorials.com/">HTML5CanvasTutorials</a></li>
- <li><a class="external" href="http://html5tutorial.com/how-to-draw-n-grade-bezier-curve-with-canvas-api" title="http://html5tutorial.com/how-to-draw-n-grade-bezier-curve-with-canvas-api">How to draw N grade Bézier curves with the Canvas API</a></li>
- <li><a class="external" href="http://creativejs.com/2011/08/31-days-of-canvas-tutorials/" title="http://creativejs.com/2011/08/31-days-of-canvas-tutorials/">31 days of canvas tutorials</a></li>
- <li><a href="http://www.w3.org/TR/2dcontext/" title="http://www.w3.org/TR/2dcontext/">W3C Standard</a></li>
- <li><a href="http://www.tutorialspark.com/html5/HTML5_canvas_Intro.php" title="http://www.tutorialspark.com/html5/HTML5_canvas_Intro.php">HTML5 Canvas tutorials and reference</a></li>
+ <li><a class="external" href="http://canvimation.github.com/">Canvas Drawing and Animation Application</a></li>
+ <li><a class="external" href="http://billmill.org/static/canvastutorial/">Interactive canvas tutorial</a></li>
+ <li><a class="external" href="http://blog.nihilogic.dk/2009/02/html5-canvas-cheat-sheet.html">Canvas Cheat Sheet with all attributes and methods</a></li>
+ <li><a class="external" href="http://visitmix.com/labs/ai2canvas/">Adobe Illustrator to Canvas plug-in</a></li>
+ <li><a class="external" href="http://www.html5canvastutorials.com/">HTML5CanvasTutorials</a></li>
+ <li><a class="external" href="http://html5tutorial.com/how-to-draw-n-grade-bezier-curve-with-canvas-api">How to draw N grade Bézier curves with the Canvas API</a></li>
+ <li><a class="external" href="http://creativejs.com/2011/08/31-days-of-canvas-tutorials/">31 days of canvas tutorials</a></li>
+ <li><a href="http://www.w3.org/TR/2dcontext/">W3C Standard</a></li>
+ <li><a href="http://www.tutorialspark.com/html5/HTML5_canvas_Intro.php">HTML5 Canvas tutorials and reference</a></li>
</ul>
<div>{{ Next("Web/Guide/HTML/Canvas_tutorial/Basic_usage") }}</div>