質問:
すべての文字を指定せずにグラデーション テキストを生成する方法はありますか?手紙?たとえば、以下のようなもの:
.rainbow { background-image: linear-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) ); background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) ); color: transparent; -webkit-background-clip: text; background-clip: text; }
<span class="rainbow">Rainbow text</span>
ただし、虹色ではなく、白から灰色へのグラデーションのようなものです。
答え:
カラーストップを指定するための正確な構文は異なる場合がありますが、以下に同様の例を示します。白からグレー/ライトブルーのグラデーション:
.rainbow2 { background-image: linear-gradient(to right, #E0F8F7, #585858, #fff); color: transparent; -webkit-background-clip: text; background-clip: text; }
<span class="rainbow">Rainbow text</span>
No rainbow text
カラーストップとその位置を調整することで、すべての文字をハードコーディングしなくても、テキストにカスタムのグラデーションを作成できます。
以上が各文字を個別に定義せずにグラデーション テキストを生成できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。