Javascript
레이어 드래그 앤 드롭
- 2024.05.08 17:24:27
[!]javascript[/!]
window.onload = () => {
$(init); function init() { $('#makeMeDraggable').draggable({ containment: '#content', cursor: 'move', snap: '#content' }); } }; |