Drag and Drop (1) 썸네일형 리스트형 JavaScript - Item Drag and Drop (드래그 앤 드랍 만들기) 1. Style .dragContainer { background-color: #333; height: auto; padding: 1rem; margin-top: 1rem; } .draggable { padding: 1rem; background-color: white; border: 1px solid black; cursor: move; } .draggable .dragging { opacity: .5; } 2. HTML 1 2 3 4 Test Button 3. Script const draggables = document.querySelectorAll('.draggable'); const containers = document.querySelectorAll('.dragContainer'); dragg.. 이전 1 다음