• HTML+CSS实现登陆页面样式布局、网页设计练习案例


    请添加图片描述

    <div class="container right-panel-active">
          
          <div class="container__form container--signup">
            <form action="#" class="form" id="form1" action="/Homepage.html">
              <h2 class="form__title">Sign Uph2>
              <input
                type="text"
                id="UserName1"
                placeholder="User Name"
                class="input"
              />
              <input type="email" id="Email1" placeholder="Email" class="input" />
              <input
                type="password"
                id="Password1"
                placeholder="Password"
                class="input"
              />
              <span id="Password_length" class="regularity">span>
              <span id="Password_irregularity" class="regularity">span>
              <input
                type="password"
                id="ConfirmPassword1"
                placeholder=" ConfirmPassword"
                class="input"
              />
              <span id="Password_match" class="error"> span>
              <button class="btn" id="registerBtn">Registerbutton>
              <button type="reset" class="btn" id="resetButton">Restbutton>
            form>
          div>
    
          
          <div class="container__form container--signin">
            <form action="#" class="form" id="form2">
              <h2 class="form__title">Sign Inh2>
              <input
                type="text"
                id="UserName2"
                placeholder="User Name"
                class="input"
              />
              <span id="NameError" class="error">span>
              <input
                type="password"
                id="Password2"
                placeholder="Password"
                class="input"
              />
              <span id="PasswordError" class="error">span>
              <a href="#" class="link">Forgot your password?a>
              <span id="lo" class="link"
                ><input type="checkbox" />No login for a weekspan
              >
              <button class="btn">Sign Inbutton>
            form>
          div>
    
          
          <div class="container__overlay">
            <div class="overlay">
              <div class="overlay__panel overlay--left">
                <button class="btn" id="signIn">Sign Inbutton>
              div>
              <div class="overlay__panel overlay--right">
                <button class="btn" id="signUp">Sign Upbutton>
              div>
            div>
          div>
        div>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    :root {
    	/* COLORS */
    	--white: #e9e9e9;
    	--gray: #333;
    	--blue: #5a3f23;
    	--lightblue: #7f6141;
    
    	/* RADII */
    	--button-radius: 0.7rem;
    
    	/* SIZES */
    	--max-width: 50%;
    	--max-height: 50%;
    
    	font-size: 16px;
    	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    }
    
    body {
    	align-items: center;
    	background-color: var(--white);
    	background: url("images_nav/pexels-photo-4620843.jpeg");
    	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
    	display: grid;
    	height: 100vh;
    	margin: 0px;
    	place-items: center;
    }
    
    .form__title {
    	font-weight: 300;
    	margin: 0;
    	margin-bottom: 1.25rem;
    }
    
    .link {
    	color: var(--gray);
    	font-size: 1.2rem;
    	margin: 0.7rem 0;
    	text-decoration: none;
    }
    
    .container {
    	background-color: var(--white);
    	border-radius: var(--button-radius);
    	box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),
    		0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);
    	height: var(--max-height);
    	max-width: var(--max-width);
    	overflow: hidden;
    	position: relative;
    	width: 100%;
    	margin-top: -150px;
    }
    
    .container__form {
    	height: 100%;
    	position: absolute;
    	top: 0;
    	transition: all 0.6s ease-in-out;
    }
    
    .container--signin {
    	left: 0;
    	width: 50%;
    	z-index: 3;
    }
    
    .container.right-panel-active .container--signin {
    	transform: translateX(100%);
    }
    
    .container--signup {
    	left: 0;
    	opacity: 0;
    	width: 50%;
    	z-index: 2;
    }
    
    .container.right-panel-active .container--signup {
    	animation: show 0.6s;
    	opacity: 1;
    	transform: translateX(100%);
    	z-index: 6;
    }
    
    .container__overlay {
    	height: 100%;
    	left: 50%;
    	overflow: hidden;
    	position: absolute;
    	top: 0;
    	transition: transform 0.6s ease-in-out;
    	width: 50%;
    	z-index: 100;
    }
    
    .container.right-panel-active .container__overlay {
    	transform: translateX(-100%);
    }
    
    .overlay {
    	background-color: var(--lightblue);
    	background: url("images_nav/pexels-photo-4620821.jpeg");
    	background-size: 500px auto;
    
    	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
    	height: 100%;
    	left: -100%;
    	position: relative;
    	transform: translateX(0);
    	transition: transform 0.6s ease-in-out;
    	width: 200%;
    }
    
    .container.right-panel-active .overlay {
    	transform: translateX(50%);
    }
    
    .overlay__panel {
    	align-items: center;
    	display: flex;
    	flex-direction: column;
    	height: 100%;
    	justify-content: center;
    	position: absolute;
    	text-align: center;
    	top: 0;
    	transform: translateX(0);
    	transition: transform 0.6s ease-in-out;
    	width: 50%;
    }
    
    .overlay--left {
    	transform: translateX(-20%);
    }
    
    .container.right-panel-active .overlay--left {
    	transform: translateX(0);
    }
    
    .overlay--right {
    	right: 0;
    	transform: translateX(0);
    }
    
    .container.right-panel-active .overlay--right {
    	transform: translateX(20%);
    }
    
    .btn {
    	background-color: var(--blue);
    	background-image: linear-gradient(90deg, var(--blue) 0%, var(--lightblue) 74%);
    	border-radius: 20px;
    	border: 1px solid var(--blue);
    	color: var(--white);
    	cursor: pointer;
    	font-size: 1.2rem;
    	font-weight: bold;
    	letter-spacing: 0.2rem;
    	padding: 0.9rem 4rem;
    	text-transform: uppercase;
    	transition: transform 80ms ease-in;
    }
    
    .form > .btn {
    	margin-top: 0.8rem;
    }
    
    .btn:active {
    	transform: scale(0.95);
    }
    
    .btn:focus {
    	outline: none;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183

    全代码放在资源里传送门

  • 相关阅读:
    Mybatis配置文件——全配置解析
    【Leetcode每日一题.784:字母大小写全排列~~~DFS深度优先遍历(递归+回溯)+BFS广度优先遍历】
    PMP每日一练 | 考试不迷路-9.3(包含敏捷+多选)
    【Java】异常
    【LeetCode高频100题】1 - ?
    使用 乐天 / V-IM 作为网页即时聊天
    Java AbstractProcessor不生效问题
    mybatis-plus实现自定义SQL、多表查询、多表分页查询
    前端提升生产力系列三(vant3 vue3 移动端H5下拉刷新,上拉加载组件的封装)
    性能测试方法全解
  • 原文地址:https://blog.csdn.net/qq_43547255/article/details/134272940