HTML代码
- <div class="title">
- <h1>今天是春分</h1>
- <p>正是春天到来的日子,花都开了,小鸟也飞回来了,大山也绿了起来,空气也有点嫩嫩的气息了</p>
- </div >
复制代码 CSS代码
- @property --@color-1 {
- syntax: "<color>";
- inherits: false;
- initial-value: hsl(98 100% 62%);
- }
- @property --@color-2 {
- syntax: "<color>";
- inherits: false;
- initial-value: hsl(204 100% 59%);
- }
- @keyframes gradient-change {
- to {
- --@color-1: hsl(210 100% 59%);
- --@color-2: hsl(310 100% 59%);
- }
- }
- .title {
- animation: gradient-change 2s linear infinite alternate;
-
- background: linear-gradient(
- to right in oklch,
- var(--@color-1),
- var(--@color-2)
- );
-
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
- color: transparent;
- }
复制代码 效果图
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |