源创宝库吧 新一代精品资源网 在线工具箱 此位置招租 SanS三石导航页 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 ⚡免费影视资源库丨极速无广告⚡ 此位置招租
返回列表 发布新帖
查看: 112|回复: 2

[模块插件] 二次元背景的登录玻璃界面特效HTML源码

  在线 
灌水成绩
127
203
806
主题
回帖
积分

等级头衔
UID : 83
等级 : 版主

积分成就
威望 : 93 点
贡献 : 378 点
蛋壳 : 5714 枚
在线时间 : 1311 小时
注册时间 : 2024-4-17
最后登录 : 2024-9-17

荣誉勋章
发表于 2024-5-29 12:57:16 | 查看全部 |阅读模式 来自: 中国–黑龙江–七台河

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×


二次元背景的登录玻璃界面特效HTML源码

二次元背景的登录玻璃界面特效HTML源码



  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge"></meta>
  7.     <title>Document</title>
  8.     <style>
  9.         html,
  10.         body {
  11.             margin: 0;
  12.             padding: 0;
  13.             font-family: "PingFang SC", "Microsoft Yahei", sans-serif;
  14.         }
  15.         .container {
  16.             width: 100vw;
  17.             height: 100vh;
  18.             display: flex;
  19.             align-items: center;
  20.             justify-content: center;
  21.             background: url("https://p6.qhimg.com/bdr/__85/t018c22f0bb29ffa997.jpg") fixed no-repeat;
  22.             background-size: cover;
  23.         }
  24.         .login-form {
  25.             width: 240px;
  26.             height: 220px;
  27.             display: flex;
  28.             flex-direction: column;
  29.             padding: 40px;
  30.             text-align: center;
  31.             position: relative;
  32.             z-index: 100;
  33.             background: inherit;
  34.             border-radius: 18px;
  35.             overflow: hidden;
  36.         }
  37.         .login-form::before {
  38.             content: "";
  39.             width: calc(100% + 20px);
  40.             height: calc(100% + 20px);
  41.             background: inherit;
  42.             box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.25);
  43.             position: absolute;
  44.             top: -10px;
  45.             left: -10px;
  46.             z-index: -1;
  47.             filter: blur(6px);
  48.             overflow: hidden;
  49.         }
  50.         .login-form h2 {
  51.             font-size: 18px;
  52.             font-weight: 400;
  53.             color: #3d5245;
  54.         }
  55.         .login-form input,
  56.         .login-form button {
  57.             margin: 6px 0;
  58.             height: 36px;
  59.             border: none;
  60.             background-color: rgba(255, 255, 255, 0.3);
  61.             border-radius: 4px;
  62.             padding: 0 14px;
  63.             color: #3d5245;
  64.         }
  65.         .login-form input::placeholder {
  66.             color: #3d5245;
  67.         }
  68.         .login-form button {
  69.             margin-top: 24px;
  70.             background-color: rgba(57, 88, 69, 0.4);
  71.             color: white;
  72.             position: relative;
  73.             overflow: hidden;
  74.             cursor: pointer;
  75.             transition: 0.4s;
  76.         }
  77.         .login-form button:hover {
  78.             background-color: rgba(12, 80, 38, 0.67);
  79.         }
  80.         .login-form button::before,
  81.         .login-form button::after {
  82.             content: "";
  83.             display: block;
  84.             width: 80px;
  85.             height: 100%;
  86.             background: rgba(179, 255, 210, 0.5);
  87.             opacity: 0.5;
  88.             position: absolute;
  89.             left: 0;
  90.             top: 0;
  91.             transform: skewX(-15deg);
  92.             filter: blur(30px);
  93.             overflow: hidden;
  94.             transform: translateX(-100px);
  95.         }
  96.         .login-form button::after {
  97.             width: 40px;
  98.             background: rgba(179, 255, 210, 0.3);
  99.             left: 60px;
  100.             filter: blur(5px);
  101.             opacity: 0;
  102.         }
  103.         .login-form button:hover::before {
  104.             transition: 1s;
  105.             transform: translateX(320px);
  106.             opacity: 0.7;
  107.         }
  108.         .login-form button:hover::after {
  109.             transition: 1s;
  110.             transform: translateX(320px);
  111.             opacity: 1;
  112.         }
  113.     </style>
  114. </head>
  115. <body>
  116. <!--QQ沐编程 www.qqmu.com 学习QQ群:290987565  域名抢注 33210.jm.cn -->
  117.     <div>
  118.         <div class="container">
  119.             <form action="#" class="login-form">
  120.                 <h2>登录</h2>
  121.                 <input type="text" name="username" placeholder="用户名">
  122.                 <input type="password" name="password" placeholder="密码">
  123.                 <button type="submit">登录</button>
  124.             </form>
  125.         </div>
  126.     </div>
  127. </body>
  128. </html>
复制代码
生无可恋
  离线 
灌水成绩
53
378
1513
主题
回帖
积分

等级头衔
UID : 86
等级 : 高级会员

积分成就
威望 : 259 点
贡献 : 658 点
蛋壳 : 1206 枚
在线时间 : 389 小时
注册时间 : 2024-4-18
最后登录 : 2024-8-27

荣誉勋章

荣誉会员最佳新人活跃会员热心会员实习版主推广达人宣传达人论坛元老优秀作者帅哥认证

发表于 2024-5-29 16:15:47 | 查看全部 来自: 中国–江苏–南通
两岸罗衣破晕香,银钗照日如霜刃。
  在线 
灌水成绩
2168
16240
22205
主题
回帖
积分

等级头衔
UID : 79
等级 : 超级版主

积分成就
威望 : 1008 点
贡献 : 2344 点
蛋壳 : 50425 枚
在线时间 : 2574 小时
注册时间 : 2024-4-13
最后登录 : 2024-9-17

荣誉勋章

荣誉会员帅哥认证最佳新人活跃会员灌水之王实习版主推广达人宣传达人论坛元老热心会员优秀作者优秀版主超级版主部落真神

发表于 2024-6-29 13:28:55 | 查看全部 来自: 中国–上海–上海
滴~绝版卡,打卡成功!楼主辛苦了,祝楼主:万事如意🧡,打卡时间:2024年06月29日 13:28:55
新帖通知群(钉钉群):点击查看
荷包蛋部落(QQ群):荷包蛋部落 - HBD0.CN
💥荷包蛋联盟-免费的自助广告-为广大用户提供宣传服务!💯
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1楼
2楼
3楼
投诉/建议联系

8641340@qq.com

欢迎各位朋友加入本社区,
共同维护良好的社区氛围
  • QQ用户交流群
  • 钉钉新帖推送群
Powered by Discuz! X3.5 Licensed  Copyright © 2001-2024 荷包蛋部落 版权所有 All Rights Reserved. 鲁ICP备20023396号-6
关灯 在本版发帖
加入钉钉新帖推送群
QQ客服返回顶部
快速回复 返回顶部 返回列表