AI智能
改变未来

使用CSS实现变色霓虹文字

使用CSS实现变色霓虹文字

  • 代码
  • 实现效果

代码

<span class=\"name\">Name</span><style>.name{font-size:50px;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;color: #FF512F;font-weight: 700;text-shadow: 0px 0px 7px #ffd800;background-image: linear-gradient(90deg, #ffd800 0%, #ff512f 100%, #fff);animation: glow-animation 2s infinite linear;color: #FFC0CB;box-sizing: border-box;vertical-align: inherit;}@keyframes glow-animation{0%{filter:hue-rotate(-360deg)}100%{filter:hue-rotate(360deg)}}</style>

实现效果

实际动画很流畅,下图为录制的GIF帧率较低

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 使用CSS实现变色霓虹文字