開発者の皆さん、こんにちは!私の最新プロジェクトである月間カレンダーを共有できることを嬉しく思います。このプロジェクトは、JavaScript で機能的で視覚的に魅力的なカレンダーを作成したい人に最適です。 Web サイトにカレンダー機能を追加することに興味がある場合でも、単に JavaScript スキルを強化したい場合でも、このプロジェクトはあなたのポートフォリオへの貴重な追加となるでしょう。
月間カレンダーは、現在の月を表示し、今日の日付を強調表示し、曜日を正確に配置する Web ベースのアプリケーションです。このプロジェクトでは、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;
ここで、Month Calendar プロジェクトのライブデモをチェックできます。
月間カレンダーの作成は、フロントエンド開発スキルと実用的な JavaScript 機能を組み合わせることができる楽しいプロジェクトでした。このツールは、Web サイトにカレンダーの日付を表示するのに便利で、Web 開発プロジェクトへの優れた追加機能となります。皆さんも私と同じように役立つと思います。コーディングを楽しんでください!
このプロジェクトは、JavaScript スキルを向上させ、機能的な Web ツールを作成するという私の旅の一環として開発されました。
以上が月間カレンダー Web サイトを構築するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。