AppleのサイトみたいにCSSで綺麗な文字を作る方法【テキストで背景をマスク】コード付き

どうも、コーディング大好きケンタロウ(@kentaro_koga)です^ ^

先日新しいiPhoneが発表されましたね!!

そこでアップルのサイトを見てみると、、、か、、、かっこいい!!

とりあえず見てみてください↓↓

公式:
Apple
iPhoneXS

デザインも好きですが、スクロール時の動きや文字のスタイリングがめちゃくちゃ好きです。

このサイトを見る前に、「グラデーションかかっているみたいな文字はどうやって実装しているのか?画像じゃないみたいだし、、、」というツイートを見かけました。

こないだのブログで「background-clip: text;」を紹介していたので一瞬でこれだなと分かりましたww
【HTML/CSS】filter:blur;とbackground-clip:text;でふわっと綺麗な虹色ボタンを作る方法

この記事では「アップルの公式ページに載っている背景を文字でマスクしたモノの作り方」を紹介していきますね

また、それだけだと面白くないので背景にアニメーションをつけてもっと面白くしてみます^ ^

では参ります


HTMLの準備

簡単なHTMLです。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Text Mask</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <div class="box">
            <h2>Hello World</h2>
            <p class="textMask">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, maiores esse qui voluptatem sunt iusto, veniam nesciunt aperiam sequi impedit rerum facere perspiciatis ad atque officiis! Accusantium velit dicta quidem.</p>
        </div>
    </div>
</body>
</html>

背景写真の準備

今回はunsplashという無料の写真素材サイトから以下の写真を持ってきました。

これだけで美しい・・・ww

CSSを書いていく

コメントで軽く解説しています。

/* アップルの公式ページを同じく背景は黒にしています */
body {
    background: #000;
}
/* 上下左右中央揃えしています */
.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
}

.box {
    margin: 0 auto;
    max-width: 800px; /*別に必要ないですww*/
    /*font-familyはアップルの公式ページと同じものにしています。*/
    font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    font-weight: bold;
}

.box h2 {
    margin: 0;
    color: #bbffbd;/*画像の色の薄い色を入れてみました*/
    font-size: 72px;
}

.textMask {
    display: inline-block;/*これが無いとスマホで表示されない*/
    margin: 0;
    color: transparent;/*透明にして背景が見えるようにする*/
    -webkit-text-fill-color: transparent;
    background: url('./textmaskbg.jpg'); /*背景の指定*/
    -webkit-background-clip: text;/*テキストでマスク*/
    background-clip: text;/*テキストでマスク*/
    font-size: 48px;
    line-height: 1;
}

ここまでで以下のような感じになるかと思います。

h2背景にアニメーションをかけて面白くする
先ほどのCSSをちょっと編集します

/* アップルの公式ページを同じく背景は黒にしています */
body {
    background: #000;
}
/* 上下左右中央揃えしています */
.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
}

.box {
    margin: 0 auto;
    max-width: 800px; /*別に必要ないですww*/
    /*font-familyはアップルの公式ページと同じものにしています。*/
    font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    font-weight: bold;
}

.box h2 {
    margin: 0;
    color: #bbffbd;/*画像の色の薄い色を入れてみました*/
    font-size: 72px;
}

.textMask {
    display: inline-block;/*これが無いとスマホで表示されない*/
    margin: 0;
    color: transparent;/*透明にして背景が見えるようにする*/
    -webkit-text-fill-color: transparent;
    background: url('./textmaskbg.jpg'); /*背景の指定*/
    -webkit-background-clip: text;/*テキストでマスク*/
    background-clip: text;/*テキストでマスク*/
    -webkit-animation: bgAnim 20s alternate infinite ease-in-out;
            animation: bgAnim 20s alternate infinite ease-in-out;
    font-size: 48px;
    line-height: 1;
}

@-webkit-keyframes bgAnim {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes bgAnim {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

これだけでこんな感じに背景がゆっくり動くようになりました。

Demo

オサレですよね^ ^

*スマホでキモかったのでちょっと対応

/* ------------------------------- */
/* -------------スマホ------------- */
/* ------------------------------- */
@media screen and (max-width: 480px) {
    .container {
        height: auto;
    }
    .box h2 {
        font-size: 48px;
    }
    .textMask {
        font-size: 32px;
    }
}

まぁ自由に編集して見てくださいませ^ ^

デザインの幅も広がると思いますので、是非参考にしてみてください〜〜^ ^

では〜



Posted

in

, ,