aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/dragevent/index.md
diff options
context:
space:
mode:
authoralattalatta <alattalatta@sorto.me>2022-02-21 10:04:22 +0900
committerGitHub <noreply@github.com>2022-02-21 10:04:22 +0900
commit201f55848d4b15e4e59ab32b2bd1a4e1caa4db3a (patch)
tree863ddc787ec9219f452ab577d399439ffe66c51b /files/ko/web/api/dragevent/index.md
parent0ea2400f310ae8ebb2bfd6579d5e812547360061 (diff)
downloadtranslated-content-201f55848d4b15e4e59ab32b2bd1a4e1caa4db3a.tar.gz
translated-content-201f55848d4b15e4e59ab32b2bd1a4e1caa4db3a.tar.bz2
translated-content-201f55848d4b15e4e59ab32b2bd1a4e1caa4db3a.zip
Remove {{page}} macro from API docs (#3913)
* Update BatteryManager * Update BiquadFilterNode * Update DataTransfer.getData * Update DragEvent * Update FileReader.result * Update Geolocation API * Update Network Information API * Update Notification.permission * Update Screen * Remove {{page}} from Document * Remove {{page}} from Navigator.battery * Remove {{page}} from Using the Notifications API * Add {{Compat}} to Navigator.battery
Diffstat (limited to 'files/ko/web/api/dragevent/index.md')
-rw-r--r--files/ko/web/api/dragevent/index.md82
1 files changed, 82 insertions, 0 deletions
diff --git a/files/ko/web/api/dragevent/index.md b/files/ko/web/api/dragevent/index.md
new file mode 100644
index 0000000000..90cba75d26
--- /dev/null
+++ b/files/ko/web/api/dragevent/index.md
@@ -0,0 +1,82 @@
+---
+title: DragEvent
+slug: Web/API/DragEvent
+tags:
+ - API
+ - DragEvent
+ - Reference
+ - drag and drop
+browser-compat: api.DragEvent
+translation_of: Web/API/DragEvent
+---
+{{APIRef("HTML Drag and Drop API")}}
+
+The **`DragEvent`** interface is a {{domxref("Event","DOM event")}} that represents a drag and drop interaction. The user initiates a drag by placing a pointer device (such as a mouse) on the touch surface and then dragging the pointer to a new location (such as another DOM element). Applications are free to interpret a drag and drop interaction in an application-specific way.
+
+This interface inherits properties from {{domxref("MouseEvent")}} and {{domxref("Event")}}.
+
+## Properties
+
+- {{domxref('DragEvent.dataTransfer')}} {{readonlyInline}}
+ - : The data that is transferred during a drag and drop interaction.
+
+## Constructors
+
+Although this interface has a constructor, it is not possible to create a useful DataTransfer object from script, since {{domxref("DataTransfer")}} objects have a processing and security model that is coordinated by the browser during drag-and-drops.
+
+- {{domxref("DragEvent.DragEvent", "DragEvent()")}}
+ - : Creates a synthetic and untrusted DragEvent.
+
+## Event types
+
+- {{event('drag')}}
+ - : This event is fired when an element or text selection is being dragged.
+- {{event('dragend')}}
+ - : This event is fired when a drag operation is being ended (by releasing a mouse button or hitting the escape key).
+- {{event('dragenter')}}
+ - : This event is fired when a dragged element or text selection enters a valid drop target.
+- {{event('dragleave')}}
+ - : This event is fired when a dragged element or text selection leaves a valid drop target.
+- {{event('dragover')}}
+ - : This event is fired continuously when an element or text selection is being dragged and the mouse pointer is over a valid drop targetĀ (every 50 ms WHEN mouse is not moving ELSEĀ much faster between 5 ms (slow movement) and 1ms (fast movement) approximately. This firing pattern is different than {{Event("mouseover")}} ).
+- {{event('dragstart')}}
+ - : This event is fired when the user starts dragging an element or text selection.
+- {{event('drop')}}
+ - : This event is fired when an element or text selection is dropped on a valid drop target.
+
+## GlobalEventHandlers
+
+- {{domxref('GlobalEventHandlers.ondrag')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('drag')}} event.
+- {{domxref('GlobalEventHandlers.ondragend')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('dragend')}} event.
+- {{domxref('GlobalEventHandlers.ondragenter')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('dragenter')}} event.
+- {{domxref('GlobalEventHandlers.ondragleave')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('dragleave')}} event.
+- {{domxref('GlobalEventHandlers.ondragover')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('dragover')}} event.
+- {{domxref('GlobalEventHandlers.ondragstart')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('dragstart')}} event.
+- {{domxref('GlobalEventHandlers.ondrop')}}
+ - : A {{domxref('GlobalEventHandlers','global event handler')}} for the {{event('drop')}} event.
+
+## Example
+
+An Example of each property, constructor, event type and global event handlers is included in their respective reference page.
+
+## Specifications
+
+{{Specifications}}
+
+## Browser compatibility
+
+{{Compat}}
+
+## See also
+
+- [Drag and drop](/en-US/docs/Web/API/HTML_Drag_and_Drop_API)
+- [Drag Operations](/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations)
+- [Recommended Drag Types](/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Recommended_drag_types)
+- [Dragging and Dropping Multiple Items](/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Multiple_items)
+- [DataTransfer test - Paste or Drag](https://codepen.io/tech_query/pen/MqGgap)