diff options
Diffstat (limited to 'files/de/web/html/globale_attribute/draggable/index.html')
-rw-r--r-- | files/de/web/html/globale_attribute/draggable/index.html | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/files/de/web/html/globale_attribute/draggable/index.html b/files/de/web/html/globale_attribute/draggable/index.html new file mode 100644 index 0000000000..3a0dfd105e --- /dev/null +++ b/files/de/web/html/globale_attribute/draggable/index.html @@ -0,0 +1,104 @@ +--- +title: draggable +slug: Web/HTML/Globale_Attribute/draggable +tags: + - Experimental + - Global attributes + - HTML + - Reference +translation_of: Web/HTML/Global_attributes/draggable +--- +<p>{{HTMLSidebar("Global_attributes")}} {{SeeCompatTable}}</p> + +<p>Das globale Attribut <strong>draggable</strong> ist ein Attribut, dass zeigt, ob das entsprechende Element auf einen anderen Ort gezogen werden kann. Es unterstützt die {{domxref("HTML_Drag_and_Drop_API","HTML Drag and Drop API")}}. Folgende Werte sind erlaubt:</p> + +<ul> + <li><span style="font-family: courier new;">true</span>, das Element kann <em>gedraggt</em> werden</li> + <li><span style="font-family: courier new;">false</span>, das Element kann nicht <em>gedraggt </em>werden</li> +</ul> + +<p>Wurde das Attribut nicht gesetzt, wird als Wert <code>auto</code> angenommen. Das Drag-Verhalten des Elements wird dann durch den Browser bestimmt. </p> + +<p>Bei diesem Attribut handelt es sich nicht um einen <em>booleschen </em>Wert, <code>true</code> oder <code>false</code> muss explizit angegeben werden. Eine Kurzform wie beispielsweise <code><label draggable>Beispiel Label</label></code> ist nicht zulässig. Die korrekte Verwendung ist <code><label draggable="true">Beispiel Label</label></code>.</p> + +<p>Nativ kann das Attribut <strong>draggable </strong>nur für Textauswahl, Bilder und Links verwendet werden. Bei allen anderen Elementen muss das<strong> {{domxref('GlobalEventHandlers.ondragstart','ondragstart')}}</strong><code><strong>-</strong></code>Event gesetzt werden, um Drag & Drop Mechanismen verwendet zu können. <a href="/en-US/docs/DragDrop/Drag_Operations">Dieses Beispiel</a> (englisch) enthält eine ausführlichere Beschreibung der Drag & Drop API und deren Verwendung. </p> + +<h2 id="Spezifikationen">Spezifikationen</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spezifikation</th> + <th scope="col">Status</th> + <th scope="col">Kommentar</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "interaction.html#the-draggable-attribute", "draggable")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>Keine Änderung seit dem letztem Snapshot, {{SpecName('HTML5.1')}}</td> + </tr> + <tr> + <td>{{SpecName('HTML5.1', "editing.html#the-draggable-attribute", "draggable")}}</td> + <td>{{Spec2('HTML5.1')}}</td> + <td>Snapshot von {{SpecName('HTML WHATWG')}}, initiale Definition</td> + </tr> + </tbody> +</table> + +<h2 id="Browserkompatibilität">Browserkompatibilität</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Eigenschaft</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Grundlegende Funktionalität</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatGeckoDesktop("1.8.1") }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Eigenschaft</th> + <th>Android</th> + <th>Chrome for Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Grundlegende Funktionalität</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatGeckoMobile("1.8.1") }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>Alle <a href="de/docs/Web/HTML/Globale_Attribute">globalen Attribute</a>.</li> +</ul> |