惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
月光博客
月光博客
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
雷峰网
雷峰网
博客园 - 叶小钗
量子位
IT之家
IT之家

韩小韩博客

你还在用真实邮箱注册网站?等等,你真的想清楚了吗? IPFS星际文件系统 最新二合一收款码 - 物理合并版 从Hexo到Astro博客1分钟迁移指南 Astro 添加 Waline 评论组件 腾讯云 EdgeOne Pages 实测对比:能否成为国内开发者的 Cloudflare Pages 最佳平替? Astro 中使用 Lenis 增加鼠标滚动阻尼感 一组手机和电脑动态壁纸分享【分享】 Astro 添加 Twikoo 评论组件 Astro主题-优雅的vhAstro-Theme【使用文档】 Fetch的GET、POST简单HTTP请求封装 一些实拍的手机壁纸 大理And威海【图】 很喜欢西湖的水【转自:狮子狮子鱼】 Tarot-塔罗牌占卜 Web Watermark 图片添加水印在线小助手 HanAnalytics访问分析Web统计托管于(Cloudflare Pages) 基于AI的微博动态心情分析 阿里云免费用9年ecs教程【适合轻量化服务如frp】 Cloudflare优选IP➕DnsPod的DDNS自动切换 混沌神器Clash全家桶 卷王都在用的变态休息法 NodeJs文本相似度去重脚本 骤雨重山无限存储图床托管于(Cloudflare Pages) 分享好看的天空和云(长期更新) Typecho转到Hexo(主题由Typecho-Joe-Theme转Butterfly主题) Typecho评论导出为Hexo的Valine、Twikoo等评论所支持的JSON文件 Safari浏览器内容被地址栏、菜单栏或工具栏遮挡导致的兼容问题 拼夕夕快速提现100元攻略 2024 平安喜乐
6分钟实现CSS炫光倒影按钮
.𝙃𝙖𝙣 · 2026-04-11 · via 韩小韩博客

925 4.6分钟

Code

分享简单有趣的CSS创意特效,放松放松心情~

6分钟实现CSS炫光倒影按钮

定义基本样式

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "fangsong";
}
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
}

font-family: ‘fangsong’; 仿宋字体。 display: flex; align-items: center; justify-content: center; flex布局,让按钮在屏幕居中。

定义基本标签

<a href="#" class="item item1">
  aurora
  <span></span>
  <span></span>
  <span></span>
  <span></span>
</a>
<a href="#" class="item item2">
  aurora
  <span></span>
  <span></span>
  <span></span>
  <span></span>
</a>
<a href="#" class="item item3">
  aurora
  <span></span>
  <span></span>
  <span></span>
  <span></span>
</a>

3个a标签就对应3个按钮,每个按钮里4个span就是环绕按钮的4条边。 且都有个公共的选择器 .item 和 只属于自己的选择器。

定义每个按钮的基本样式

.item {
  position: relative;
  margin: 50px;
  width: 300px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 35px;
  letter-spacing: 5px;
  color: aqua;
  overflow: hidden;
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(6, 133, 133, 0.3));
}

text-align: center;文字对齐方式。 line-height: 80px; 字行高。 text-transform: uppercase; 字母为大写。 text-decoration: none; 去掉a标签默认下划线。 letter-spacing: 5px; 每个字符间的距离。 overflow: hidden;溢出隐藏。 -webkit-box-reflect: below 1px linear-gradient( transparent,rgba(6, 133, 133,0.3)); 这个属性能实现倒影效果。

鼠标经过按钮样式改变

.item:hover {
  background-color: aqua;
  box-shadow:
    0 0 5px aqua,
    0 0 75px aqua,
    0 0 155px aqua;
  color: black;
}

box-shadow

0 5px aqua, 0 0 75px aqua, 0 0 155px aqua; 阴影,写多行可以叠加更亮。

设置环绕按钮的4根线上面那条的样式

.item span:nth-of-type(1) {
  position: absolute;
  left: -100%;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to left, aqua, transparent);
  animation: shang 1s linear infinite;
}
@keyframes shang {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

position: absolute; left: -100%; 定位在对应位置。 background-image: linear-gradient(to left,aqua ,transparent); 线性渐变颜色。 animation: shang 1s linear infinite; 动画属性,让它动起来。

以此类推,设置环绕按钮的其它3根样式

.item span:nth-of-type(2) {
  position: absolute;
  top: -100%;
  right: 0;
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to top, aqua, transparent);
  animation: you 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes you {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
.item span:nth-of-type(3) {
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to right, aqua, transparent);
  animation: xia 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes xia {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
.item span:nth-of-type(4) {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to bottom, aqua, transparent);
  animation: zuo 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes zuo {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

animation-delay: 0.75s; 动画延迟执行。每条线对应延迟一段时间,形成时间差,形成环绕效果。

完整代码

<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "fangsong";
      }
      body {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(0, 0, 0);
      }
      .item {
        position: relative;
        margin: 50px;
        width: 300px;
        height: 80px;
        text-align: center;
        line-height: 80px;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 35px;
        letter-spacing: 5px;
        color: aqua;
        overflow: hidden;
        -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(6, 133, 133, 0.3));
      }
      .item:hover {
        background-color: aqua;
        box-shadow:
          0 0 5px aqua,
          0 0 75px aqua,
          0 0 155px aqua;
        color: black;
      }
      .item span:nth-of-type(1) {
        position: absolute;
        left: -100%;
        width: 100%;
        height: 3px;
        background-image: linear-gradient(to left, aqua, transparent);
        animation: shang 1s linear infinite;
      }
      @keyframes shang {
        0% {
          left: -100%;
        }
        50%,
        100% {
          left: 100%;
        }
      }
      .item span:nth-of-type(2) {
        position: absolute;
        top: -100%;
        right: 0;
        width: 3px;
        height: 100%;
        background-image: linear-gradient(to top, aqua, transparent);
        animation: you 1s linear infinite;
        animation-delay: 0.25s;
      }
      @keyframes you {
        0% {
          top: -100%;
        }
        50%,
        100% {
          top: 100%;
        }
      }
      .item span:nth-of-type(3) {
        position: absolute;
        right: -100%;
        bottom: 0;
        width: 100%;
        height: 3px;
        background-image: linear-gradient(to right, aqua, transparent);
        animation: xia 1s linear infinite;
        animation-delay: 0.5s;
      }
      @keyframes xia {
        0% {
          right: -100%;
        }
        50%,
        100% {
          right: 100%;
        }
      }
      .item span:nth-of-type(4) {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 3px;
        height: 100%;
        background-image: linear-gradient(to bottom, aqua, transparent);
        animation: zuo 1s linear infinite;
        animation-delay: 0.75s;
      }
      @keyframes zuo {
        0% {
          bottom: -100%;
        }
        50%,
        100% {
          bottom: 100%;
        }
      }
      .item1 {
        filter: hue-rotate(100deg);
      }
      .item3 {
        filter: hue-rotate(250deg);
      }
    </style>
  </head>
  <body>
    <a href="#" class="item item1">
      aurora
      <span></span>
      <span></span>
      <span></span>
      <span></span>
    </a>
    <a href="#" class="item item2">
      aurora
      <span></span>
      <span></span>
      <span></span>
      <span></span>
    </a>
    <a href="#" class="item item3">
      aurora
      <span></span>
      <span></span>
      <span></span>
      <span></span>
    </a>
  </body>
</html>

转自 ㅤㅤㅤ6分钟实现CSS炫光倒影按钮 - 掘金 ㅤㅤㅤ作者:北极光之夜 ㅤㅤㅤ地址:https://juejin.cn/post/6966482130020859912

HTML CSS