배열 원하는 형태로 재조립하기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 let arr = [ '1.txt', '1.json', '1.wav', '2.txt', '2.json', '2.wav', '3.txt', '3.wav', '4.txt', '4.json', '4.wav', '5.txt', '5.json', '5.wav', '6.txt', '6.json', '6.wav', '7.txt', '7.json', '7.wav', '8.txt', '8.json', '8.wav', '9.txt', '9.json', '10.txt', '10.json', '10.wa..
Tus프로토콜을 사용한 업로드
const input = document.getElementById('input'); input.addEventListener("change", function (e) { const files = e.target.files; function tusUpload(files) { [].map.call(files, (file, index) => { var upload = new tus.Upload(file, { endpoint: 'http://localhost:5000/uploads', retryDelays: [0, 3000, 5000, 10000, 20000], metadata: { filename: file.name, filetype: file.type }, chunkSize: 8 * 1024 * 1..
Color 모듈 만들기
색상 출처: http://yeun.github.io/open-color Open Color Color scheme for UI design yeun.github.io const palette = { gray: [ '#f8f9fa', '#f1f3f5', '#e9ecef', '#dee2e6', '#ced4da', '#adb5bd', '#868e96', '#495057', '#343a40', '#212529', ], red: [ '#fff5f5', '#ffe3e3', '#ffc9c9', '#ffa8a8', '#ff8787', '#ff6b6b', '#fa5252', '#f03e3e', '#e03131', '#c92a2a', ], pink: [ '#fff0f6', '#ffdeeb', '#fcc2d7', '#faa..