栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用css实现闪光的霓虹灯文字效果

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用css实现闪光的霓虹灯文字效果

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <meta name="viewport" content="width=device-width, initial-scale=1.0">  <meta http-equiv="X-UA-Compatible" content="ie=edge">  <title>霓虹文本</title></head><style>  @import url(https://fonts.googleapis.com/css?family=Pacifico);  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);    }  }</style><body>  <div class="neon">Good evening, and good night!</div></body></html>

  • 链接
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/410781.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号