視覚的に魅了するブログ記事のアイキャッチテンプレート

image0

このテーマの特徴

このHTMLテンプレートは、ブログ記事のアイキャッチをデザインするためのものです。以下に、テンプレートの特徴をわかりやすく説明します。

1. 視覚的な魅力:

  • 色使い: 深みのある黒 (#181818) をベースに、少し明るい黒 (#333) と白 (#fff) を組み合わせ、アクセントカラーとしてオレンジ (#e8a317) を使用しています。
  • グラデーション: 記事タイトルには、パープル (#7b4397) からワインレッド (#dc2f55) へのグラデーションが適用され、視覚的なアクセントと高級感を演出します。
  • 丸み: コンテンツエリアには丸みを帯びた角 (#content-rounded: 12px) を採用し、柔らかな印象を与えます。

2. 構成とレイアウト:

  • ヘッダー: 左側にブログアイコン、中央にブログタイトル、右側にカテゴリーが表示されます。
  • メインエリア: 記事タイトルを大きく表示し、視線を惹きつけます。
  • レスポンシブデザイン: flex を使用して、画面サイズに合わせて要素が適切に配置されるようになっています。

3. 機能性:

  • SVGアイコン: ブログアイコンとして SVG を使用することで、ベクターグラフィックの利点を活かし、高画質で拡大縮小しても劣化しません。
  • 文字のオーバーフロー: タイトルやカテゴリーのテキストが長くなった場合、overflow: hidden;text-overflow: ellipsis; を使用して、省略記号 (...) で表示されます。
  • カテゴリーの表示: class="category-{FirstCategory}" によって、記事の最初のカテゴリーが表示されます。

4. カスタマイズ:

  • 色: :root に定義された変数 (--bg-main, --text-main, --text-accent, etc.) を変更することで、簡単に色を変更できます。
  • フォント: font-family を変更することで、ブログの雰囲気に合ったフォントを使用できます。
  • コンテンツ: {BlogTitle}, {Title}, {FirstCategory} などのプレースホルダーに実際のコンテンツを置き換えることができます。

このテンプレートは、洗練されたデザインと適切な機能性を備えており、ブログ記事のアイキャッチを作成するのに役立ちます。カスタマイズ可能な要素が豊富なので、ブログのテーマやデザインに合わせた調整が可能です。

ソースコード

<!DOCTYPE html>
<html lang="{BlogLanguage}">
  <head>
    <meta charset="utf-8">
    <style>
      :root {
        --bg-main: #181818; /* 深みのある黒 */
        --bg-secondary: #333; /* 少し明るい黒 */
        --text-main: #fff; /* 白 */
        --text-accent: #e8a317; /* オレンジ */
        --gradient-start: #7b4397; /* パープル */
        --gradient-end: #dc2f55; /* ワインレッド */
        --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 > div {
        background-color: var(--bg-main);
        padding: 24px;
      }

      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-accent);
        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;
      }

      .main {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 20px auto 8px;
        overflow: hidden;
        text-align: center;
      }

      .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;
        background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* 透過処理 */
      }

      .entry-title::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
        opacity: 0.3;
        z-index: -1;
      }
    </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>
    </div>
  </body>
</html>