2022-10-29
09:00-17:00 / 17:00-19:00 / 21:00~22:00 / 23:00-24:00
dataset
https://blogpack.tistory.com/680
input[type="file"]
<input type="file" accept="image/*" multiple id="file" />
https://developer.mozilla.org/ko/docs/Web/HTML/Element/Input/file
https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
function onFileChange(event) {
const file = event.target.files[0];
const url = URL.createObjectURL(file);
const image = new Image();
image.src = url;
image.onload = function () {
ctx.drawImage(image, 0, 0, 600, 600);
fileInput.value = null;
};
}
https://jw910911.tistory.com/119
Monday/ Wednesday(Tuesday)/ Thursday 19:45-20:15 (English with Clarisse)
Tuesday / Thursday 21:00 ~ 22:00 (어깨 수영 보류)
Saturday 09:00~10:00
Sunday