HTML+CSS实现动态背景登录页⾯
1. 实现背景图⽚的动态变换
⾸先在HTML页⾯body板块中,添加图⽚div,代码如下:
<body>
<div class="bgk">
<div class="bgk-image" ></div>
<div class="bgk-image" ></div>
<div class="bgk-image" ></div>
<div class="bgk-image" ></div>
</body>
再对图⽚进⾏css设计。你要对图⽚进⾏⼤⼩定位,那么以下代码肯定要⾸先编写:
`.bgk {
margin: auto;
position: absolute;
width: 1366px;
height: 672px;
overflow: hidden; /*溢出部分隐藏*/
}`
位置设定ok以后,那么再对⾥⾯的图⽚进⾏设置。为了使图⽚能⾜够⼤覆盖页⾯,则代码必须有 background-size: cover;
要实现动态效果,那么你的css代码中必须有动画的设计:
-webkit-animation-name: kenburns; /*-animation-name:为@keyframes 动画规定名称,必须与-animation-duration同时使⽤,否则⽆动画效果*/
animation-name: kenburns; /*或者:后⾯值为需要绑定到选择器上的keyframe名称*/
-webkit-animation-duration: 16s; /*定义动画完成⼀个周期所需时间*/
animation-duration: 16s;
-webkit-animation-timing-function: linear; /*规定动画从头到尾以相同速度播放,还有其他⼏个速度值*/
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite; /*规定动画播放次数,infinite为⽆限次*/
animation-iteration-count: infinite;
-webkit-transform: scale(1.2); /*规定动画的缩放特效,scale:规定2D缩放*/
transform: scale(1.2);
-webkit-filter: blur(10px); /*定义图⽚的模糊程度,显⽰为⽑玻璃效果*/
用html和css制作百度页面filter: blur(10px);
在绑定每个⼦元素选择器,有⼏张图⽚就绑定⼏个选择器:
.bgk-image:nth-child(1) {
-webkit-animation-name: kenburns-1; /*选择器上的名称*/
animation-name: kenburns-1;
z-index: 3; /*动画堆叠顺序,值越⼤表⽰越先播放,离⽤户越近*/
}
.bgk-image:nth-child(2) {
-webkit-animation-name: kenburns-2;
animation-name: kenburns-2;
z-index: 2;
}
.bgk-image:nth-child(3) {
-webkit-animation-name: kenburns-3;
animation-name: kenburns-3;
z-index: 1;
}
.bgk-image:nth-child(4) {
-webkit-animation-name: kenburns-4;
animation-name: kenburns-4;
z-index: 0;
}
创建好选择器以后,你就可以预览你的动态背景图⽚变换了
2. 对登录表单的设计
在之前HTML页⾯中继续添加⼀个表单
<div class="form_login_div">
<form class="form_login" action="" method="post">
<label class="login_title">登录您的账户</label>
<label class="username">⽤户名</label><input class="input_username" id="input_username" type="text" name="username" placeholder="邮箱/⼿机号"/>
<label class="password">密 ;码</label><input class="input_password" id="input_password" type="password" name="password" placeholder="请输⼊密码"/> <input type="submit" value="登录"/><br/>
</form>
</div>
添加完表单之后,就要进⾏表单的样式设计。⾸先你得对表单规定⼀个圈⼦,限制它的宽度和⾼度
.form_login{
margin: auto;
width:700px;
height: 480px;
top: 90px;
left: 333px;
position: absolute;
border-radius: 15px;
background: rgba(216,216,216,0.5); /*设置form表单透明度*/
text-align: center;
overflow: hidden;
}
然后对表单⾥⾯的各个label进⾏定位和样式设计,这⾥可以⾃由设计。
对输⼊框的设计,我只贴出主要样式代码
outline:none; /*outline (轮廓)是绘制于元素周围的⼀条线,位于边框边缘的外围,可起到突出元素的作⽤。*/
border:1px solid rgba(0,0,0,.49); /*输⼊框边框的⼤⼩,实线,rgba(red,green,blue,a为透明度),透明度处于0-1之间*/
-webkit-background-clip: padding-box; /*background-clip 规定背景的绘制区域,padding-box为内容被裁减到内边距框*/
background-clip: padding-box;
background:rgba(216,216,216,0.4) ;
border-radius:6px; /*对输⼊框进⾏圆⾓*/
padding:7px; /*输⼊框中光标位置*/
当聚焦输⼊框的时候,可以增加⼀点绚丽⾊彩
.form_login input[type="text"]:focus,input[type="password"]:focus{
-webkit-transition:border linear .2s,-webkit-box-shadow linear .5s; /*对边框颜⾊的逐步过渡⾼亮显⽰,后⾯是对阴影的逐步过渡*/
border-color:rgba(255,128,0,.75);
}
最后进⾏提交按钮的设计
text-shadow:0px -1px 0px #5b6ddc; /*⽂字阴影设置*/
outline:none;
border:1px solid rgba(0,0,0,0.49); /*按钮边框颜⾊与透明度设置*/
-webkit-background-clip: padding-box; /*规定内容的绘制区域,padding-box为内边框距*/
background-clip: padding-box;
border-radius:6px;
cursor:pointer; /*光标形状,pointer为⼀只⼿的形状*/
background-color:#768ee4; /*按钮背景颜⾊*/
当⿏标放在提交按钮上⾯时,你可以适当进⾏⼀些动画效果设计
.form_login input[type="submit"]:hover{
background-color:#5f73e9;
background-image:-webkit-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);
background-image:-moz-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);
background-image:-ms-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);
background-image:-o-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);
-webkit-box-shadow: inset 0px 1px 0px #aab9f4; /*当⿏标放在按钮上个时边框的阴影*/
box-shadow: inset 0px 1px 0px #aab9f4;
margin-top:22px;
}
最后整个设计完成,你可以看见你最终的效果了
以上所述是⼩编给⼤家介绍的HTML+CSS实现动态背景登录页⾯,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论