슬라이드 (2) 썸네일형 리스트형 [자바스크립트 js / 프로젝트6 ] modal / 모달 / 모달 슬라이드 / 모서리에서 아이콘 보여지기 html css @import url("https://fonts.googleapis.com/css?family=Kaushan+Script"); :root { --mainPink: #ef7998; --mainYellow: rgb(249, 228, 148); --mainWhite: #fff; --mainBlack: #000; --yellowTrans: rgba(249, 228, 148, 0.5); --mainGrey: rgb(238, 238, 238); } body { font-family: "Kaushan Script", cursive; background: var(--mainWhite); color: var(--mainBlack); } /* store items */ .img-container { pos.. [자바스크립트 js / 프로젝트4] 리뷰 별 아이콘 / 리뷰 슬라이드 / forEach 실습 / 슬라이드 이미지 교체 / 슬라이드 텍스트 교체 안녕하세요. 디자인도 하고, 개발도 하는 '디발자 뚝딱'입니다. 이번 포스팅에서는 리뷰 슬라이드 만드는 방법에 대해 공유하겠습니다. 먼저 완성된 화면을 보여드리겠습니다. prev, next 버튼을 누르면 그에 따라 이미지, 텍스트가 교체돼요. html design & dev TOOKTAK 디발자 뚝딱 Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam sit voluptatum illo? Quae fugiat aspernatur harum aperiam, quis eos officia. js (function(){ const customerImage = document.querySelector('#customer-img') const custo..