안녕하세요, 개발자 여러분! 저의 최신 프로젝트인 월 달력을 공유하게 되어 기쁩니다. 이 프로젝트는 JavaScript로 기능적이고 시각적으로 매력적인 달력을 만들고자 하는 모든 사람에게 적합합니다. 웹사이트에 캘린더 기능을 추가하는 데 관심이 있거나 단순히 JavaScript 기술을 향상시키고 싶은 경우 이 프로젝트는 귀하의 포트폴리오에 귀중한 추가 자료가 될 것입니다.
월 달력은 이번 달을 표시하고 오늘 날짜를 강조 표시하며 요일을 정확하게 정렬하는 웹 기반 애플리케이션입니다. 이 프로젝트는 HTML 및 CSS로 구축된 세련되고 반응성이 뛰어난 인터페이스와 결합된 JavaScript를 사용하여 달력을 동적으로 생성하는 방법을 보여줍니다.
프로젝트 구조 개요는 다음과 같습니다.
Month-Calendar/ ├── index.html ├── style.css └── script.js
프로젝트를 시작하려면 다음 단계를 따르세요.
저장소 복제:
git clone https://github.com/abhishekgurjar-in/Month-Calendar.git
프로젝트 디렉토리 열기:
cd Month-Calendar
프로젝트 실행:
index.html 파일은 월 표시 및 날짜의 그리드 레이아웃을 포함하여 월 달력의 구조를 정의합니다. 다음은 일부 내용입니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Month Calendar</title> <link rel="stylesheet" href="style.css" /> <script src="script.js" defer></script> </head> <body> <div class="container"> <div class="header"> <h1>Month Calendar</h1> </div> <div class="calendar"> <div class="month"> <div class="date"> <h1></h1> <p></p> </div> </div> <div class="weekdays"> <div>Mon</div> <div>Tue</div> <div>Wed</div> <div>Thu</div> <div>Fri</div> <div>Sat</div> <div>Sun</div> </div> <div class="days"></div> </div> <div class="footer"> <p>Made with ❤️ by Abhishek Gurjar</p> </div> </div> </body> </html>
style.css 파일은 월 달력의 스타일을 지정하여 매력적이고 반응성이 뛰어납니다. 다음은 몇 가지 주요 스타일입니다.
* { margin: 0; padding: 0; font-family: sans-serif; box-sizing: border-box; } .container { width: 100%; height: 100vh; background-color: salmon; display: flex; justify-content: center; align-items: center; flex-direction: column; } .header { margin: 20px; color: white; text-align: center; } .calendar { background-color: black; color: lightgray; width: 450px; height: 520px; border-radius: 10px; box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4); } .month { width: 100%; height: 120px; background-color: lightseagreen; display: flex; justify-content: center; align-items: center; text-align: center; border-radius: 10px 10px 0 0; } .month h1 { font-size: 30px; font-weight: 400; text-transform: uppercase; } .month p { font-size: 16px; } .weekdays { width: 100%; height: 50px; display: flex; } .weekdays div { font-size: 15px; font-weight: bold; letter-spacing: 1px; width: 100%; display: flex; align-items: center; justify-content: center; } .days { width: 100%; display: flex; flex-wrap: wrap; padding: 2px; } .days div { font-size: 14px; margin: 3px; width: 57.5px; height: 50px; display: flex; justify-content: center; align-items: center; } .days div:hover:not(.empty) { border: 2px solid gray; cursor: pointer; } .today { background-color: lightseagreen; } .footer { margin-top: 70px; color: white; text-align: center; }
script.js 파일에는 달력을 생성하고 현재 날짜를 강조 표시하는 로직이 포함되어 있습니다. 다음은 일부 내용입니다.
const monthEl = document.querySelector(".date h1"); const fullDateEl = document.querySelector(".date p"); const daysEl = document.querySelector(".days"); const monthInx = new Date().getMonth(); const lastDay = new Date(new Date().getFullYear(), monthInx + 1, 0).getDate(); const firstDay = new Date(new Date().getFullYear(), monthInx, 1).getDay() - 1; const months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", ]; monthEl.innerText = months[monthInx]; fullDateEl.innerText = new Date().toDateString(); let days = ""; for (let i = firstDay; i > 0; i--) { days += `<div class="empty"></div>`; } for (let i = 1; i <= lastDay; i++) { if (i === new Date().getDate()) { days += `<div class="today">${i}</div>`; } else { days += `<div>${i}</div>`; } } daysEl.innerHTML = days;
월 달력 프로젝트의 라이브 데모를 여기에서 확인하실 수 있습니다.
월 달력을 만드는 것은 프론트엔드 개발 기술과 실용적인 JavaScript 기능을 결합할 수 있게 해주는 즐거운 프로젝트였습니다. 이 도구는 웹사이트에 달력 날짜를 표시하는 데 유용하며 웹 개발 프로젝트에 큰 도움이 될 수 있습니다. 여러분도 저만큼 도움이 되길 바랍니다. 즐거운 코딩하세요!
이 프로젝트는 JavaScript 기술을 향상하고 기능적인 웹 도구를 만들기 위한 여정의 일환으로 개발되었습니다.
위 내용은 월별 달력 웹사이트 구축의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!