注册时间2021-11-18
在线时间 小时
- 最后登录
- 1970-1-1
|
.lrcShow{
font:bold 2.5em 楷体;color:white; /* 歌词字体、大小、背景颜色 */
position:absolute;bottom:0px;left:20%; /* 歌词的位置 */
width:80%;height:1.5em;filter:drop-shadow(1px 1px 1px white);letter-spacing:2px;--aniName:bgMove1;--durTime:100ms;--aniPlayState:running;cursor:pointer;
}
.lrcShow::before{ /* 歌词动态前景色等,不熟悉就不要改动 */
position:absolute;content:attr(data-lrc);width:0;height:100%;left:0;top:0;color:darkred;color:transparent;
background-image:linear-gradient(90deg,hsl(30,100%,25%),hsl(60,100%,50%),hsl(90,100%,75%));-webkit-background-clip:text;overflow:hidden;white-space:nowrap;
animation:var(--aniName) var(--durTime) linear forwards;animation-play-state:var(--aniPlayState);
}
红字分别是歌词背景色和前景色的设置,蓝色的删除掉
|
|