상품이 없습니다.
function paddedFormat(num) { return num < 10 ? "0" + num : num; } function startCountDown(duration, element) { let secondsRemaining = duration; let min = 0; let sec = 0; let countInterval = setInterval(function () { min = parseInt(secondsRemaining / 60); sec = parseInt(secondsRemaining % 60); element.textContent = `${paddedFormat(min)}:${paddedFormat(sec)}`; secondsRemaining = secondsRemaining - 1; if (secondsRemaining < 0) { clearInterval(countInterval) }; }, 1000); } window.onload = function () { let time_minutes = 1; // Value in minutes let time_seconds = 30; // Value in seconds let duration = time_minutes * 60 + time_seconds; element = document.querySelector('#count-down-timer'); element.textContent = `${paddedFormat(time_minutes)}:${paddedFormat(time_seconds)}`; startCountDown(--duration, element); };

주식회사 온다패션 │ 대표자 : 김명현

사업자등록번호 : 712-81-01789

통신판매업번호 : 2020-서울마포-2052


사업장 소재지

(21315) 인천광역시 부평구 부평대로 293 부평테크시티 911호

고객센터 : 031-423-4677 │ 메일 : onda_sm@onda.co.kr

공지사항           입점문의        위탁판매       구매대행        명품감정

주식회사 온다패션 │ 대표자 : 김명현 │ 사업자등록번호 : 712-81-01789

통신판매업번호 : 2020-서울마포-2052 │ 사업장 소재지 : (21315) 인천광역시 부평구 부평대로 293 부평테크시티 911호 

고객센터 : 032-501-4677 │ 메일 : onda_sm@onda.co.kr