首頁  >  文章  >  運維  >  如何使用css實現文字漸變

如何使用css實現文字漸變

王林
王林轉載
2023-05-15 14:52:061585瀏覽

文字漸層

文字漸層效果很流行,使用 CSS3 能夠很簡單就實現:

h3[data-text] {
 position: relative;
}
h3[data-text]::after {
 content: attr(data-text);
 z-index: 10;
 color: #e3e3e3;
 position: absolute;
 top: 0;
 left: 0;
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,1)), to(rgba(0,0,0,0)));}

以上是如何使用css實現文字漸變的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除