- 積分
- 2377
- 金幣
- 90 個(gè)
- 社區(qū)幣
- 10 元
已臻大成
- 貢獻(xiàn)
- 144 點(diǎn)
- 金幣
- 90 個(gè)
|
5#
發(fā)表于 2023-4-23 20:53:23
|
只看Ta
那個(gè)漸變字體需要在 template\default\common\common.css 里添加代碼
- #postmessage_37985{
- font-size: 22px;
- color: #8c888b;
- background: -webkit-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff);
- -moz-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff);
- -ms-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff);
- color: transparent;
- -webkit-background-clip: text;
- animation: ran 50s linear infinite;
- }
- @keyframes ran {
- from {
- backgroud-position: 0 0;
- }
- to {
- background-position: 9000px 0;
- }
- }
復(fù)制代碼
然后看你需要讓那些字體漸變,例如模板字體里的h1,然后添加代碼給h1運(yùn)行。
- h1 {
- color: #8c888b;
- background: -webkit-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff);
- -moz-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff): ;
- -ms-linear-gradient(45deg,#00f2ff,#ff5200,#ffd300,#4000ff,#006bff): ;
- color: transparent;
- -webkit-background-clip: text;
- animation: ran 150s linear infinite;
- }
復(fù)制代碼
ran 150s 是速度,自己調(diào)整。 |
|