爬行的蜗牛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: golang Linux PHP
查看: 68|回复: 0

好玩的css按钮 (可复制源码)

[复制链接]

152

主题

48

回帖

1137

积分

管理员

积分
1137
发表于 2024-11-23 16:47:57 | 显示全部楼层 |阅读模式
预览效果

111.gif

源码

  1. <!DOCTYPE html>
  2. <html lang="zh">

  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>渐隐式按钮</title>
  6.     <style>
  7.         .app {
  8.             width: 100%;
  9.             height: 100vh;
  10.             background-color: #fff;
  11.             position: relative;
  12.             display: flex;
  13.             justify-content: center;
  14.             align-items: center;
  15.         }

  16.         .macaron-btn {
  17.             width: 120px;
  18.             height: 48px;
  19.             font-size: 16px;
  20.             font-weight: bold;
  21.             color: #fff;
  22.             letter-spacing: 2px;
  23.             position: relative;
  24.             border: none;
  25.             outline: none;
  26.             background-color: #87CEFA; /* 马卡龙浅蓝色 */
  27.             border-radius: 7px;
  28.             cursor: pointer;
  29.             box-shadow: 0 0 0 4px #6495ED; /* 较深的马卡龙蓝色 */
  30.             transition: all 0.1s linear;
  31.         }

  32.         .macaron-btn:after {
  33.             content: '按钮哦~';
  34.             width: 100%;
  35.             font-size: 16px;
  36.             font-weight: bold;
  37.             color: #6495ED; /* 较深的马卡龙蓝色 */
  38.             letter-spacing: 2px;
  39.             position: absolute;
  40.             left: 0;
  41.             opacity: 1;
  42.             transition: all 0.3s linear;
  43.         }

  44.         .macaron-btn:hover:after {
  45.             opacity: 0;
  46.             transform: translateY(-20px);
  47.         }

  48.         .macaron-btn:active {
  49.             transform: scale(0.99);
  50.             box-shadow: 0 0 0 2px #6495ED; /* 较深的马卡龙蓝色 */
  51.         }
  52.     </style>
  53. </head>

  54. <body>
  55.     <div class="app">
  56.         <button class="macaron-btn">按钮哦~</button>
  57.     </div>
  58. </body>

  59. </html>
复制代码

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表