ProgressBar (1) 썸네일형 리스트형 프로그레스바 (Progress Bar) 세상 간단한 프로그레스바 구현! html> css > .progress { width: 100%; height: 50px;} .progress-wrap { background: #f80; margin: 20px 0; overflow: hidden; position: relative;}.progress-wrap .progress-bar { background: #ddd; left: 0; position: absolute; top: 0;} js > moveProgressBar(); $(window).resize(function() { // 메소드 반응형 moveProgressBar(); }); function moveProgressBar() { console.log("moveProgressBar"); var.. 이전 1 다음