CSS霓虹字体特效
今天又是抄大佬博客的一天,看了⭐️齐下无贰⭐️的博客,把大佬里面文字的霓虹字体特效扒下来了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| @keyframes color-neon-light { 0% { color:#0ff; text-shadow: 0 0 5px #fc199a, 0 0 10px rgba(252,25,154,.486); filter: hue-rotate(0); } 100% { color:#0ff; text-shadow: 0 0 5px #fc199a, 0 0 10px rgba(252,25,154,.486); filter: hue-rotate(360deg); } }
:root{ --static-kf-color-neon-light: color-neon-light 2.5s linear infinite; }
[data-theme='light']{ --title-animation: none; } [data-theme='dark']{ --title-animation: var(--static-kf-color-neon-light); }
#site-title, #site-subtitle, .post-title{ animation: var(--title-animation); }
|
本文设置的特效只会在夜间模式生效。
受本人学识所限,这个霓虹灯特效的生效范围配置,多少有点不合理。欢迎您提出宝贵的建议