썸네일
-
자바스크립트 :: blob 바이너리 수신, 썸네일 생성Web 2019. 3. 11. 20:15
var url = "/myImage.png";var img = document.querySelector("img"); function getImage(url) {var req = new XMLHttpRequest();req.open("GET", url, true);req.responseType = "blob"; req.onload = function(re) {hideLoadindBar();re.preventDefault(re);var blobData = req.response;img.src = URL.createObjectURL(blobData);};req.send(); showLoadingBar();} img.addEventListener("onload", function(e) {URL.revokeOb..