设为首页收藏本站
天天打卡

 找回密码
 立即注册
搜索
查看: 32|回复: 6

HTML+CSS实现炫酷登录切换的项目实践

[复制链接]

3

主题

65

回帖

195

积分

注册会员

积分
195
发表于 2024-4-19 20:20:29 | 显示全部楼层 |阅读模式
效果演示

  1. 实现了一个登录注册页面的切换效果,当用户点击登录或注册按钮时,会出现一个叠加层,其中包含一个表单,用户可以在表单中输入用户名和密码,然后点击提交按钮进行登录或注册。当用户点击返回按钮时,会将叠加层隐藏,并将登录或注册表单显示在主体区域。这个效果可以提高用户体验,让用户更加方便地登录或注册。
复制代码
Code
  1. <div class="container">
  2.     <!-- 注册 -->
  3.     <div class="container-form container-signup">
  4.         <form action="#" class="form" id="form1">
  5.             <h2 class="form-title">注册账号</h2>
  6.             <input type="text" placeholder="User" class="input" />
  7.             <input type="email" placeholder="Email" class="input" />
  8.             <input type="password" placeholder="Password" class="input" />
  9.             <button type="button" class="btn">点击注册</button>
  10.         </form>
  11.     </div>
  12.     <!-- 登录 -->
  13.     <div class="container-form container-signin">
  14.         <form action="#" class="form" id="form2">
  15.             <h2 class="form-title">欢迎登录</h2>
  16.             <input type="email" placeholder="Email" class="input" />
  17.             <input type="password" placeholder="Password" class="input" />
  18.             <a href="#" class="link">忘记密码?</a>
  19.             <button type="button" class="btn">登录</button>
  20.         </form>
  21.     </div>
  22.     <!-- 叠加层部分 -->
  23.     <div class="container-overlay">
  24.         <div class="overlay">
  25.             <div class="overlay-panel overlay-left">
  26.                 <button class="btn" id="signIn">
  27.                     已有账号,直接登录
  28.                 </button>
  29.             </div>
  30.             <div class="overlay-panel overlay-right">
  31.                 <button class="btn" id="signUp">
  32.                     没有账号,点击注册
  33.                 </button>
  34.             </div>
  35.         </div>
  36.     </div>
  37. </div>
复制代码
  1. body {
  2.     height: 100vh;
  3.     background: #e7e7e7 url("./img/background.jpg") center no-repeat fixed;
  4.     background-size: cover;
  5.     backdrop-filter: blur(5px);
  6.     display: flex;
  7.     justify-content: center;
  8.     align-items: center;
  9. }
  10. /* 主体 div 样式 */
  11. .container {
  12.     background-color: #e7e7e7;
  13.     border-radius: 0.7rem;
  14.     box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),
  15.         0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);
  16.     height: 420px;
  17.     max-width: 750px;
  18.     overflow: hidden;
  19.     position: relative;
  20.     width: 100%;
  21. }
  22. /* 登录、注册框部分 */
  23. .container-form {
  24.     height: 100%;
  25.     position: absolute;
  26.     top: 0;
  27.     transition: all 0.6s ease-in-out;
  28. }
  29. /* 登录框 - 默认层级高 */
  30. .container-signin {
  31.     left: 0;
  32.     width: 50%;
  33.     z-index: 2;
  34. }
  35. /* 注册框 - 默认层级低 - 透明度 0 */
  36. .container-signup {
  37.     left: 0;
  38.     opacity: 0;
  39.     width: 50%;
  40.     z-index: 1;
  41. }
  42. /* 表单样式 */
  43. .form {
  44.     background-color: #e7e7e7;
  45.     display: flex;
  46.     align-items: center;
  47.     justify-content: center;
  48.     flex-direction: column;
  49.     padding: 0 3rem;
  50.     height: 100%;
  51.     text-align: center;
  52. }
  53. .form-title {
  54.     font-weight: 300;
  55.     margin: 0;
  56.     margin-bottom: 1.25rem;
  57. }
  58. .link {
  59.     color: #333;
  60.     font-size: 0.9rem;
  61.     margin: 1.5rem 0;
  62.     text-decoration: none;
  63. }
  64. .input {
  65.     width: 100%;
  66.     background-color: #fff;
  67.     padding: 0.9rem 0.9rem;
  68.     margin: 0.5rem 0;
  69.     border: none;
  70.     outline: none;
  71. }
  72. .btn {
  73.     background-color: #f25d8e;
  74.     box-shadow: 0 4px 4px rgba(255, 112, 159, .3);
  75.     border-radius: 5px;
  76.     color: #e7e7e7;
  77.     border: none;
  78.     cursor: pointer;
  79.     font-size: 0.8rem;
  80.     font-weight: bold;
  81.     letter-spacing: 0.1rem;
  82.     padding: 0.9rem 4rem;
  83.     text-transform: uppercase;
  84.     transition: transform 80ms ease-in;
  85. }
  86. .form>.btn {
  87.     margin-top: 1.5rem;
  88. }
  89. .btn:active {
  90.     transform: scale(0.95);
  91. }
  92. /* ---------- 叠加部分样式 ------------- */
  93. .container-overlay {
  94.     height: 100%;
  95.     left: 50%;
  96.     overflow: hidden;
  97.     position: absolute;
  98.     top: 0;
  99.     transition: transform 0.6s ease-in-out;
  100.     width: 50%;
  101.     z-index: 100;
  102. }
  103. .overlay {
  104.     width: 200%;
  105.     height: 100%;
  106.     position: relative;
  107.     left: -100%;
  108.     background: url("./img/background.jpg") no-repeat center fixed;
  109.     background-size: cover;
  110.     transition: transform 0.6s ease-in-out;
  111.     transform: translateX(0);
  112. }
  113. .overlay-panel {
  114.     height: 100%;
  115.     width: 50%;
  116.     position: absolute;
  117.     top: 0;
  118.     display: flex;
  119.     justify-content: center;
  120.     align-items: center;
  121.     flex-direction: column;
  122.     transform: translateX(0);
  123.     transition: transform 0.6s ease-in-out;
  124. }
  125. .overlay-left {
  126.     transform: translateX(-20%);
  127. }
  128. .overlay-right {
  129.     right: 0;
  130.     transform: translateX(0);
  131. }
  132. /* 设计激活时叠加层的位置 */
  133. .panel-active .overlay-left {
  134.     transform: translateX(0);
  135. }
  136. .panel-active .container-overlay {
  137.     transform: translateX(-100%);
  138. }
  139. .panel-active .overlay {
  140.     transform: translateX(50%);
  141. }
  142. /* 设置激活时,登录注册层的位置和透明度 */
  143. .panel-active .container-signin {
  144.     transform: translateX(100%);
  145. }
  146. .panel-active .container-signup {
  147.     opacity: 1;
  148.     z-index: 5;
  149.     transform: translateX(100%);
  150. }
复制代码
实现思路拆分
  1. body {
  2.   height: 100vh; /* 定义页面高度为视口高度 */
  3.   background: #e7e7e7 url("./img/background.jpg") center no-repeat fixed; /* 定义页面背景为灰色,并添加背景图片 */
  4.   background-size: cover; /* 定义背景图片大小为覆盖整个页面 */
  5.   backdrop-filter: blur(5px); /* 定义背景模糊效果 */
  6.   display: flex; /* 定义页面为弹性盒子 */
  7.   justify-content: center; /* 定义主轴对齐方式为居中 */
  8.   align-items: center; /* 定义交叉轴对齐方式为居中 */
  9. }
复制代码
这段代码定义了页面的整体样式,包括高度、背景、边框、阴影等。其中,
  1. height: 100vh;
复制代码
表示页面高度为视口高度,
  1. background: #e7e7e7 url("./img/background.jpg") center no-repeat fixed;
复制代码
表示页面背景为灰色,并添加背景图片,
  1. background-size: cover;
复制代码
表示背景图片大小为覆盖整个页面,
  1. backdrop-filter: blur(5px);
复制代码
表示背景模糊效果。
  1. .container-form {
  2.   height: 100%; /* 定义容器高度为100% */
  3.   position: absolute; /* 定义容器为绝对定位 */
  4.   top: 0; /* 定义容器距离顶部为0 */
  5.   transition: all 0.6s ease-in-out; /* 定义过渡效果 */
  6. }
  7. .container-signin {
  8.   left: 0; /* 定义登录框距离左侧为0 */
  9.   width: 50%; /* 定义登录框宽度为50% */
  10.   z-index: 2; /* 定义登录框层级为2 */
  11. }
  12. .container-signup {
  13.   left: 0; /* 定义注册框距离左侧为0 */
  14.   opacity: 0; /* 定义注册框透明度为0 */
  15.   width: 50%; /* 定义注册框宽度为50% */
  16.   z-index: 1; /* 定义注册框层级为1 */
  17. }
复制代码
这段代码定义了登录、注册框的样式,包括位置、透明度、层级等。其中,
  1. height: 100%;
复制代码
表示容器高度为100%,
  1. position: absolute;
复制代码
表示容器为绝对定位,
  1. top: 0;
复制代码
表示容器距离顶部为0,
  1. transition: all 0.6s ease-in-out;
复制代码
表示过渡效果。
  1. .form {
  2.   background-color: #e7e7e7; /* 定义表单背景为灰色 */
  3.   display: flex; /* 定义表单为弹性盒子 */
  4.   align-items: center; /* 定义交叉轴对齐方式为居中 */
  5.   justify-content: center; /* 定义主轴对齐方式为居中 */
  6.   flex-direction: column; /* 定义主轴方向为垂直方向 */
  7.   padding: 0 3rem; /* 定义表单内边距为左右各3rem */
  8.   height: 100%; /* 定义表单高度为100% */
  9.   text-align: center; /* 定义表单文本对齐方式为居中 */
  10. }
  11. .form-title {
  12.   font-weight: 300; /* 定义标题字体粗细为300 */
  13.   margin: 0; /* 定义标题外边距为0 */
  14.   margin-bottom: 1.25rem; /* 定义标题下边距为1.25rem */ }
  15.   .link { color: #333; /* 定义链接颜色为黑色 / font-size: 0.9rem; / 定义链接字体大小为0.9rem / margin: 1.5rem 0; / 定义链接外边距为上下各1.5rem,左右各0 / text-decoration: none; / 定义链接去除下划线 */ }
  16.   .input { width: 100%; /* 定义输入框宽度为100% / background-color: #fff; / 定义输入框背景为白色 / padding: 0.9rem 0.9rem; / 定义输入框内边距为上下各0.9rem,左右各0.9rem / margin: 0.5rem 0; / 定义输入框外边距为上下各0.5rem,左右各0 / border: none; / 定义输入框无边框 / outline: none; / 定义输入框无轮廓线 */ }
  17.   .btn { background-color: #f25d8e; /* 定义按钮背景为粉红色 / box-shadow: 0 4px 4px rgba(255, 112, 159,.3); / 定义按钮阴影效果 / border-radius: 5px; / 定义按钮圆角半径为5px / color: #e7e7e7; / 定义按钮文本颜色为白色 / border: none; / 定义按钮无边框 / cursor: pointer; / 定义按钮为指针类型 / font-size: 0.8rem; / 定义按钮字体大小为0.8rem / font-weight: bold; / 定义按钮字体粗细为bold / letter-spacing: 0.1rem; / 定义按钮字母间距为0.1rem / padding: 0.9rem 4rem; / 定义按钮内边距为上下各0.9rem,左右各4rem / text-transform: uppercase; / 定义按钮文本为大写字母 / transition: transform 80ms ease-in; / 定义按钮过渡效果 */ }
  18.   .form>.btn { margin-top: 1.5rem; /* 定义按钮上边距为1.5rem */ }
  19.   .btn:active { transform: scale(0.95); /* 定义按钮激活时缩放效果 */}
复制代码
这段代码定义了登录和注册表单的样式,包括背景、字体、输入框、按钮等。其中,
  1. background-color: #e7e7e7;
复制代码
表示表单背景为灰色,
  1. display: flex;
复制代码
表示表单为弹性盒子,
  1. align-items: center;
复制代码
表示交叉轴对齐方式为居中,
  1. justify-content: center;
复制代码
表示主轴对齐方式为居中,
  1. flex-direction: column;
复制代码
表示主轴方向为垂直方向,
  1. padding: 0 3rem;
复制代码
表示表单内边距为左右各3rem,
  1. height: 100%;
复制代码
表示表单高度为100%,
  1. text-align: center;
复制代码
表示表单文本对齐方式为居中。
  1. .container-overlay {
  2.     height: 100%;
  3.     /* 定义容器高度为100% / left: 50%; / 定义容器距离左侧为50% / overflow: hidden; / 定义容器溢出部分隐藏 / position: absolute; / 定义容器为绝对定位 / top: 0; / 定义容器距离顶部为0 / transition: transform 0.6s ease-in-out; / 定义过渡效果 / width: 50%; / 定义容器宽度为50% / z-index: 100; / 定义容器层级为100 */
  4. }
  5. .overlay {
  6.     width: 200%;
  7.     /* 定义叠加层宽度为200% / height: 100%; / 定义叠加层高度为100% / position: relative; / 定义叠加层为相对定位 / left: -100%; / 定义叠加层距离左侧为-100% / background: url("./img/background.jpg") no-repeat center fixed; / 定义叠加层背景为背景图片,并居中对齐 / background-size: cover; / 定义叠加层背景大小为覆盖整个页面 / transition: transform 0.6s ease-in-out; / 定义过渡效果 / transform: translateX(0); / 定义叠加层初始位置为0 */
  8. }
  9. .overlay-panel {
  10.     height: 100%;
  11.     /* 定义叠加层面板高度为100% / width: 50%; / 定义叠加层面板宽度为50% / position: absolute; / 定义叠加层面板为绝对定位 / top: 0; / 定义叠加层面板距离顶部为0 / display: flex; / 定义叠加层面板为弹性盒子 / justify-content: center; / 定义主轴对齐方式为居中 / align-items: center; / 定义交叉轴对齐方式为居中 / flex-direction: column; / 定义主轴方向为垂直方向 / transform: translateX(0); / 定义叠加层面板初始位置为0 / transition: transform 0.6s ease-in-out; / 定义过渡效果 */
  12. }
  13. .overlay-left {
  14.     transform: translateX(-20%);
  15.     /* 定义左侧叠加层面板位置为向左移动20% */
  16. }
  17. .overlay-right {
  18.     right: 0;
  19.     /* 定义右侧叠加层面板距离右侧为0 / transform: translateX(0); / 定义右侧叠加层面板位置为0 */
  20. }
  21. /* 设计激活时叠加层的位置 / .panel-active.overlay-left { transform: translateX(0); / 定义左侧叠加层面板位置为0 */
  22. }
  23. .panel-active.container-overlay {
  24.     transform: translateX(-100%);
  25.     /* 定义容器距离左侧为-100% */
  26. }
  27. .panel-active.overlay {
  28.     transform: translateX(50%);
  29.     /* 定义叠加层位置为向右移动50% */
  30. }
  31. /* 设置激活时,登录注册层的位置和透明度 / .panel-active.container-signin { transform: translateX(100%); / 定义登录层位置为向右移动100% */
  32. }
  33. .panel-active.container-signup {
  34.     opacity: 1;
  35.     /* 定义注册层透明度为1 / z-index: 5; / 定义注册层层级为5 / transform: translateX(100%); / 定义注册层位置为向右移动100% */
  36. }
复制代码
这段代码定义了登录和注册页面的叠加层的样式,包括位置、大小、透明度、层级等。其中,height: 100%; 表示容器高度为100%,left: 50%; 表示容器距离左侧为50%,overflow: hidden; 表示容器溢出部分隐藏,position: absolute; 表示容器为绝对定位,top: 0; 表示容器距离顶部为0,transition: transform 0.6s ease-in-out; 表示过渡效果,width: 50%; 表示容器宽度为50%,z-index: 100; 表示容器层级为100。
居中对齐,background-size: cover; 表示叠加层背景大小为覆盖整个页面,transition: transform 0.6s ease-in-out; 表示过渡效果,transform: translateX(0); 表示叠加层初始位置为0。
叠加层面板的样式包括叠加层面板的高度、宽度、位置、显示方式、对齐方式、主轴方向、过渡效果、初始位置等。其中,height: 100%; 表示叠加层面板高度为100%,width: 50%; 表示叠加层面板宽度为50%,position: absolute; 表示叠加层面板为绝对定位,top: 0; 表示叠加层面板距离顶部为0,display: flex; 表示叠加层面板为弹性盒子,justify-content: center; 表示主轴对齐方式为居中,align-items: center; 表示交叉轴对齐方式为居中,flex-direction: column; 表示主轴方向为垂直方向,transform: translateX(0); 表示叠加层面板初始位置为0,transition: transform 0.6s ease-in-out; 表示过渡效果。
叠加层面板的左侧和右侧样式分别定义为 overlay-left 和 overlay-right,分别表示左侧和右侧叠加层面板的样式。其中,transform: translateX(-20%); 表示左侧叠加层面板位置为向左移动20%,right: 0; 表示右侧叠加层面板距离右侧为0,transform: translateX(0); 表示右侧叠加层面板位置为0。
当激活时,叠加层的位置和透明度会发生变化,包括左侧叠加层面板位置、容器距离左侧、叠加层位置、注册层透明度、注册层位置等。其中,.panel-active.overlay-left 表示当激活时,左侧叠加层面板位置为0,.panel-active.container-overlay 表示当激活时,容器距离左侧为-100%,.panel-active.overlay 表示当激活时,叠加层位置为向右移动50%,.panel-active.container-signin 表示当激活时,登录层位置为向右移动100%,.panel-active.container-signup 表示当激活时,注册层透明度为1,注册层层级为5,注册层位置为向右移动100%。
到此这篇关于HTML+CSS实现炫酷登录切换的文章就介绍到这了,更多相关HTML CSS登录切换内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

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

×

0

主题

78

回帖

157

积分

注册会员

积分
157
发表于 2024-4-23 00:39:10 | 显示全部楼层
同意你的观点,我们有共鸣。

2

主题

49

回帖

139

积分

注册会员

积分
139
发表于 2024-6-3 01:38:17 | 显示全部楼层
非常感谢你的观点,让我受益良多!

1

主题

10

回帖

44

积分

新手上路

积分
44
发表于 2024-6-17 06:11:21 | 显示全部楼层
太棒了!感谢分享这个信息!

2

主题

60

回帖

166

积分

注册会员

积分
166
发表于 2024-7-1 01:46:44 | 显示全部楼层
非常感谢你的观点,让我受益良多!

0

主题

49

回帖

99

积分

注册会员

积分
99
发表于 2024-10-31 08:10:43 | 显示全部楼层
感谢分享,受益匪浅!

3

主题

62

回帖

192

积分

注册会员

积分
192
发表于 2024-11-13 00:50:22 | 显示全部楼层
牛逼
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|爱云论坛 - d.taiji888.cn - 技术学习 免费资源分享 ( 蜀ICP备2022010826号 )|天天打卡

GMT+8, 2024-11-24 12:48 , Processed in 0.098942 second(s), 27 queries .

Powered by i云网络 Licensed

© 2023-2028 正版授权

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