top of page

ユーティリティ

ツール

Wix CSS コード - 円錐グラデーション

CSSを使用してWixで円錐テキストグラデーション効果を示す画像

このCSSコードは、テキストに円錐状のグラデーション効果を追加します。コード構文で色とグラデーションの角度を追加してください。


background: conic-gradient(from 45deg, #00f5d4, #7209b7, #3a86ff, #48cae4)


コード


.css-tutorial {
background: conic-gradient(from 45deg, #00f5d4, #7209b7, #3a86ff, #48cae4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

bottom of page