Interactive tool
Test native HTML drag and drop, list sorting, file drops, and live event logs.
Drag a label from the left into the container on the right.Key points: dragstart set in effectAllowed and setData;
dragover must preventDefault() to become a drop target。
Drag items up and down to reorder.核心是用 getBoundingClientRect() calculates the pointer position relative to each sibling,
配合 :not(.dragging) to exclude itself,在 dragover 中实时 insertBefore。
Drop any file into the dashed area below, or click to choose.示例 DataTransfer.files to read and display
(files are not uploaded and are displayed locally only).