Alone Proejct
-
드래그 멀티파일 업로드Alone Proejct 2024. 3. 13. 14:03
ㅁ HTML ㅁ CSS .drop-area { border: 2px dashed #ccc; border-radius: 20px; width: 100%; /*margin: 50px auto;*/ padding: 20px; } .drop-area.highlight { border-color: hotpink; /*border : solid;*/ } JAVASCRIPT //2024.01.16 CHU 드래그 업로드 // let dropArea = document.getElementById('drop-area'); const fileUpload = (data,idx) => { // console.log('data : ',data); // console.log('idx : '+idx); //화면 처리 } let dr..