このテーマの特徴
このHTMLテンプレートは、ブログ記事のアイキャッチをデザインするためのテンプレートです。以下に、テンプレートの特徴を詳しく説明します。
1. カスタマイズ可能な要素
- カラー:
--bg-main
,--bg-secondary
,--text-main
,--text-back
,--accent-color
の変数で背景色、テキスト色、アクセントカラーを簡単に変更できます。 - フォント:
'Noto Sans CJK JP'
を使用していますが、他のフォントに変更することも可能です。 - カテゴリ:
category-{FirstCategory}
のクラスで、カテゴリ別に異なるスタイルを適用できます。 - 幾何学模様:
--accent-color
で色を調整したり、shape-1
,shape-2
,shape-3
のスタイルを変更して模様をカスタマイズできます。 - コンテンツ:
{BlogTitle}
,{Title}
にブログタイトルや記事タイトルを置き換えてください。
2. レイアウトと構造
- ヘッダー: ブログタイトル、アイコン、カテゴリが表示されます。
- メインコンテンツ: 記事タイトルと幾何学模様の背景が配置されます。
- レスポンシブデザイン: メディアクエリを使用して、様々な画面サイズに適応するデザインを実現できます。
3. 具体的な機能
- カテゴリによるスタイル変更:
body.category-{FirstCategory}
のようにカテゴリ名でスタイルを変更することで、各カテゴリに合わせたアイキャッチデザインを作成できます。 - 幾何学模様の重ね合わせ:
z-index
プロパティを使って、記事タイトルを幾何学模様の上に重ねて表示しています。 - テキストの省略:
overflow: hidden; text-overflow: ellipsis;
を使用して、長いテキストを省略表示することができます。
4. その他
このテンプレートは、ブログ記事のアイキャッチデザインを簡単に作成するための基礎となります。カスタマイズ可能な要素を活用して、自分だけのオリジナルなアイキャッチデザインを作成してみてください。
ソースコード
<!DOCTYPE html> <html lang="{BlogLanguage}"> <head> <meta charset="utf-8"> <style> :root { --bg-main: #FFF; --bg-secondary: #003368; --text-main: #003368; --text-back: #d4e3f0; --accent-color: #FF6347; /* アクセントカラーは調整してください */ --content-rounded: 12px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-secondary); color: var(--text-main); font-weight: normal; font-family: 'Noto Sans CJK JP'; min-height: 100vh; display: flex; flex-direction: column; padding: 24px 24px; line-height: 1.4; word-break: break-word; } /* カテゴリによるカスタマイズ */ body.category-日記 { background-color: #fff; } /* コンテンツ部分の共通設定 */ body > div { background-color: var(--bg-main); } body > div:first-child { border-radius: var(--content-rounded) var(--content-rounded) 0 0; } body > div:last-child { border-radius: 0 0 var(--content-rounded) var(--content-rounded); } /* ヘッダーの設定 */ .header { width: 100%; display: flex; justify-content: center; align-items: center; padding-top: 18px; } .header > :first-child { margin-left: 24px; } .header > :last-child { margin-right: 24px; } .header .base { display: flex; flex-direction: row; align-items: center; } .icon > svg, .icon > img { border-radius: 50%; width: 64px; margin-right: 12px; } .blog-title { max-width: 60%; } .blog-title .title { font-size: 48px; font-weight: bold; color: var(--text-main); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .spacer { flex-grow: 1; } .category { display: flex; justify-content: center; gap: 15px; max-width: 25%; } .category span { display: block; box-sizing: border-box; padding: 2px 12px; border-radius: 8px; background-color: var(--text-back); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 30px; line-height: 1.3; font-weight: bold; color: var(--text-main); } .category span:empty { display:none; } /* メインコンテンツの設定 */ .main-wrapper { flex: 1; width: 100%; display:flex; padding-bottom: 56px; /* Xのシェア時には、アイキャッチの下部に タイトル要素が重ねて表示されるため空白を用意しておくことを推奨します */ } .main { width: 75%; display: flex; flex-direction: column; justify-content: center; margin: 20px auto 8px; overflow: hidden; text-align: center; position: relative; /* テキストを幾何学模様の上に重ねるために追加 */ } .entry-title { display: -webkit-box; -webkit-line-clamp: 4; /* 行数の上限 */ line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap : break-word; word-break: auto-phrase; color: var(--text-main); font-size: 56px; line-height: 1.3; font-weight: bold; position: relative; /* テキストを幾何学模様の上に重ねるために追加 */ z-index: 1; /* テキストを幾何学模様の上に重ねるために追加 */ } /* 幾何学模様の背景 */ .geometric-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; /* テキストよりも下に配置 */ } /* 幾何学模様の各要素 */ .geometric-shape { position: absolute; background-color: var(--accent-color); opacity: 0.7; /* 透明度調整 */ } .shape-1 { width: 200px; height: 200px; border-radius: 50%; top: 100px; left: 50px; } .shape-2 { width: 150px; height: 150px; transform: rotate(45deg); top: 200px; left: 200px; } .shape-3 { width: 100px; height: 100px; transform: rotate(-30deg); top: 300px; left: 350px; } /* カテゴリによる幾何学模様のカスタマイズ例 */ body.category-日記 .geometric-shape { background-color: #FFC0CB; /* ピンク系 */ opacity: 0.8; } body.category-旅行 .geometric-shape { background-color: #4CAF50; /* 緑系 */ opacity: 0.6; } </style> </head> <body class="category-{FirstCategory}"> <div class="header"> <div class="icon"> <svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"> <path d="M45,90A45,45,0,1,1,90,45,45.05,45.05,0,0,1,45,90ZM45,5.723A39.278,39.278,0,1,0,84.281,45,39.322,39.322,0,0,0,45,5.723Z" fill="#333"></path> <path d="M50.241,22.78a63.54,63.54,0,0,1-4.22-11.3V43.349a2.938,2.938,0,1,1-1.879-.051V11.442A63.6,63.6,0,0,1,39.914,22.78a115.111,115.111,0,0,1-7.739,13.113l2.746,37.579s2.61,2.913,10.151,2.916h.01c7.54,0,10.151-2.916,10.151-2.916l2.746-37.579A115.02,115.02,0,0,1,50.241,22.78Z" fill="#333"></path> </svg> </div> <div class="blog-title"> <div class="title">{BlogTitle}</div> </div> <div class="spacer"></div> <div class="category"> <span>{FirstCategory}</span> </div> </div> <div class="main-wrapper"> <div class="main"> <div class="entry-title">{Title}</div> <div class="geometric-background"> <div class="geometric-shape shape-1"></div> <div class="geometric-shape shape-2"></div> <div class="geometric-shape shape-3"></div> </div> </div> </div> </body> </html>