使用css实现霓虹灯效果

使用css实现霓虹灯效果,第1张

使用css实现霓虹灯效果
  <div class="neon">Good evening, and good night!</div>
  body {    display: flex;    height: 100vh;    justify-content: center;    align-items: center;    text-align: center;    background: black;  }  .neon {    color: #cce7f8;    font-size: 2.5rem;    font-family: 'Pacifico', cursive;    text-transform: uppercase;    animation: shining 0.1s alternate infinite;  }  @keyframes shining {    from {      text-shadow: 0 0 6px rgba(182, 211, 207, 0.9),        0 0 30px rgba(182, 211, 207, 0.3), 0 0 12px rgba(15, 115, 223, 0.5),        0 0 21px rgba(15, 115, 223, 0.9), 0 0 34px rgba(15, 115, 223, 0.8),        0 0 54px rgba(15, 115, 223, 0.9);    }    to {      text-shadow: 0 0 6px rgba(182, 211, 207, 1),        0 0 30px rgba(182, 211, 207, 0.4), 0 0 12px rgba(15, 115, 223, 0.6),        0 0 22px rgba(15, 115, 223, 0.8), 0 0 38px rgba(15, 115, 223, 0.9),        0 0 60px rgba(15, 115, 223, 1);    }  }

https://github.com/censek/HTML5-CSS3-demos/tree/master/%E9%9C%93%E8%99%B9%E6%96%87%E6%9C%AC

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5431548.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存