爬行的蜗牛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

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

有趣的css - 好看的倒影按钮

[复制链接]

134

主题

41

回帖

1031

积分

管理员

积分
1031
发表于 2024-12-2 11:59:50 | 显示全部楼层 |阅读模式
整体效果
640.gif
html 页面

  1. <!DOCTYPE html>
  2. <html lang="zh">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <link rel="stylesheet" href="style.css">
  6.     <title>好看的倒影按钮</title>
  7.   </head>
  8.   <body>
  9.     <div class="app">
  10.       <button class="btn89">BUTTON</button>
  11.     </div>
  12.   </body>
  13. </html>
复制代码
css 样式

  1. .app{
  2.   width: 100%;
  3.   height: 100vh;
  4.   background-color: #ffffff;
  5.   position: relative;
  6.   display: flex;
  7.   justify-content: center;
  8.   align-items: center;
  9. }
  10. .btn89{
  11.   padding: 16px 24px;
  12.   border: none;
  13.   outline: none;
  14.   border-radius: 0.4rem;
  15.   cursor: pointer;
  16.   font-size: 16px;
  17.   font-weight: bold;
  18.   background-color: #1b81ff;
  19.   color: #ffffff;
  20.   transition: all 0.6s ease-in-out;
  21.   box-shadow: 0px 4px 16px rgba(0,0,0,0.2);
  22.   box-reflect: below 4px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.3));
  23.   -webkit-box-reflect: below 4px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.3));
  24. }
  25. .btn89:hover{
  26.   color: #000000;
  27.   background: #ff6102;
  28. }
复制代码


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

本版积分规则

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