ホームページ > 記事 > ウェブフロントエンド > CSS を使用してグラデーションのアニメーション境界線の効果を実現する方法 (コードは添付されています)
この記事の内容は、CSS を使用してグラデーションアニメーションの効果を実現する方法 (コード付き) です。必要な方は参考にしていただければ幸いです。
https://github.com/comehope/front-end-daily-challenges/tree/master/016-colorful-gradient-animated-border
domを定義し、コンテナにテキストが含まれます:
<div> you are my<br> FAVORITE </div>
中央表示:
html, body, .box { height: 100%; display: flex; align-items: center; justify-content: center; }
ページの背景色の設定:
body { background: #222; }
コンテナとテキストスタイルの設定:
.box { color: white; font-size: 2.5em; width: 10em; height: 5em; background: #111; font-family: sans-serif; line-height: 1.5em; text-align: center; border-radius: 0.2em; }
疑似要素を含むバックボードの追加:
.box { position: relative; } .box::after { content: ''; position: absolute; width: 102%; height: 104%; background-color: orange; z-index: -1; border-radius: 0.2em; }
Putバックパネルをグラデーションカラーにします:
.box::after { /*background-color: orange;*/ background-image: linear-gradient(60deg, aquamarine, cornflowerblue, goldenrod, hotpink, salmon, lightgreen, sandybrown, violet); }
バックパネルのアニメーション効果を設定します:
.box::after { background-size: 300%, 300%; animation: animate_bg 5s ease infinite alternate; } @keyframes animate_bg { 0% { background-position: 0%, 50%; } 50% { background-position: 100%, 50%; } 100% { background-position: 0%, 50%; } }
最後に、テキストに色の変化効果を追加します:
.box { animation: animate_text 2s linear infinite alternate; } @keyframes animate_text { from { color: lime; } to { color: yellow; } }
これで完了です。
関連する推奨事項:
CSS とカラー ブレンド モードを使用してローダー アニメーション効果を実装する方法 (コード付き)
以上がCSS を使用してグラデーションのアニメーション境界線の効果を実現する方法 (コードは添付されています)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。