問題:
有沒有一種方法可以產生漸變文字而不指定每個字母信?例如,如下:
.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中文網其他相關文章!