From 61253481962cfec2a9949bc0ae24d2d39a3398a8 Mon Sep 17 00:00:00 2001 From: atyamash Date: Sat, 12 Mar 2022 23:07:14 +0900 Subject: user_input_methods のドラッグ&ドロップの日本語訳を追加 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/guide/user_input_methods/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/ja/web/guide/user_input_methods/index.html b/files/ja/web/guide/user_input_methods/index.html index ff913aee10..d473fe319f 100644 --- a/files/ja/web/guide/user_input_methods/index.html +++ b/files/ja/web/guide/user_input_methods/index.html @@ -129,23 +129,23 @@ if (elem.requestFullscreen) {

ドラッグ&ドロップ

-

Drag & Drop allows your application’s users to click and hold the mouse button down over an element, drag it to another location, and release the mouse button to drop the element there.

+

ドラッグ&ドロップ API によりあなたのアプリケーションのユーザーは、クリックして要素を超えてマウスボタンを押し続け、他の場所にドラッグし、そしてその要素を移動先にドロップするためにマウスボタンを離すことができます。

-

Here is an example that allows a section of content to be dragged.

+

以下は、コンテンツのセクションにドラッグできるようにする例です。

<div draggable="true" ondragstart="event.dataTransfer.setData('text/plain', 'This text may be dragged')">
     This text <strong>may</strong> be dragged.
 
</div>
-

in which we:

+

私たちが実装する点は以下です:

-

: You can find more information in the MDN Drag & Drop documentation.

+

: MDN のドラッグ&ドロップドキュメントでもっと情報を確認することができます。

コンテンツを編集可能にする

-- cgit v1.2.3-54-g00ecf