JavaScript
[JavaScript] Drag&Drop, mouse wheel
Drag&Drop.html wheel.html Scale me with your mouse wheel.
Drag&Drop.html wheel.html Scale me with your mouse wheel.
index.html Blue Yellow Pink 남성 라지 js > main.js //json파일을 받아오는 함수 function loadItems(){ //json데이터를 fetch를 통해 받아옴 // fetch api // fetch('url') --> 네트워크 주소를 적으면 받아옴 return fetch('data/data.json') //성공적으로 데이터를 받으면 제이슨으로 변환하여 리턴 // 파일량에 따라 불러오는 시간이 다름 .then(response => response.json()) // () 소괄호 생략 가능 //변환이 성공하면 json매개변수에 받아서 json의 key items값을 리턴 .then(json => json.items); } //받아온 json데이터를 html요소로 변환..