写点什么

如何制作登录界面

作者:海瞳Seapupil
  • 2022 年 6 月 27 日
  • 本文字数:1770 字

    阅读完需:约 6 分钟

如何制作登录界面

今天我将使用 HTML,CSS 和 JavaScript 做一个个性化的登录界面我们先来看看运行的结果:



注意:我在本文中只会简介有些重要的代码,因为我们不是在写代码而是在写博客。

第一步

先在桌面建一个.html 文件,.html 前面名字可以以你们的风格来写,这里我就用 index.html 来演示。这次代码可以把 CSS+JavaScript 放在 HTML 文件里面。我们先从 index.html 讲起,我们先把 HTML 基本代码写出来。


<div class="container">        <h1>海拥 | 海瞳</h1>        <form action="">            <input type="text" class="tbx" placeholder="账号">            <input type="password" class="tbx" placeholder="密码">            <input type="submit" class="sub" value="登录">        </form>    </div>
复制代码


你们万万想不到,在本次分享的代码了,html就这么多。
复制代码


CSS 代码:


*{    margin:0;    padding:0;}body{    /* 设置body高度为100%窗口高度 */    height:100vh;    /* 弹性盒子模型 */    display: flex;    /* 限免两个属性是让body里的子类居中 */    justify-content: center;    align-items: center;    background-color: #1d1928;}.container{    display: flex;    justify-content: center;    align-items: center;    flex-direction: column;    width: 350px;    height: 450px;    border-radius: 20px;    background-color: #4471a3;    /* 盒子阴影 */    box-shadow: 15px 15px 10px rgba(33,45,58,0.3);    overflow: hidden;    position:relative;}.container form{    width: 350px;    height: 200px;    display: flex;    justify-content: space-around;    flex-direction: column;    align-items: center;    z-index: 1;}.container form .tbx{    width: 250px;    height: 40px;    outline: none;    border: none;    border-bottom: 1px solid #fff;    background: none;    color:#fff;    font-size: 15px;}/* 设置文本框提示文本的样式 */.container form .tbx::placeholder{    color: #fff;    font-size: 15px;}.container form .sub{    width: 250px;    height: 40px;    outline: none;    border:1px solid #fff;    border-radius: 20px;    letter-spacing: 5px;    color:#fff;    background: none;    cursor: pointer;    margin-top: 20px;}.container h1{    color: #ecf0f1;    font-size: 50px;    letter-spacing: 5px;    font-weight: 100;    /* 文字阴影 */    text-shadow: 5px 5px 5px rgba(33,45,58,0.3);    z-index: 1;}/* 设置鼠标进入的样式 */.container .in{    position: absolute;    top:0;    left:0;    display: block;    width: 0;    height: 0;    border-radius: 50%;    background: #cf455f;    transform: translate(-50%,-50%);    /* 使用in动画,持续0.5秒,缓出的时间函数,停留在最后一帧 */    animation: in 0.5s ease-out forwards;}/* 设置鼠标离开的样式 */.container .out{    position: absolute;    top:0;    left:0;    display: block;    width: 1200px;    height: 1200px;    border-radius: 50%;    background: #cf455f;    transform: translate(-50%,-50%);    /* 使用out动画,持续0.5秒,缓出的时间函数,停留在最后一帧 */    animation: out 0.5s ease-out forwards;}/* 动画 *//* 设置鼠标进入时,元素的动画 */@keyframes in{    /* 初始关键帧 */    0%{        width: 0;        height: 0;    }    /* 结束关键帧 */    100%{        width: 1200px;        height: 1200px;    }}/* 设置鼠标离开时,元素的动画 */@keyframes out{    /* 初始关键帧 */    0%{        width: 1200px;        height: 1200px;    }    /* 结束关键帧 */    100%{        width: 0;        height: 0;    }}
复制代码


我们写完 HTML+CSS 代码运行效果如下:



我们就已经用 HTML+CSS 把基本框架出来了。这个没有加 Javascript,所以他说静态的。


由于主要代码在 JavaScript 代码也比较多,我就不传上 JavaScript 代码,想要代码的可以加我微信,微信号 y27724611159 要取代码,不收任何费用,全部免费。

用户头像

海瞳,一个在学Web前端的学生 2022.03.23 加入

个人微信【y27724611159】 目前所学的技能【Web前端】 个人介绍:我是一个计算机爱好者,喜欢搞计算机这一方面的东西,也是学Web前端的学生,目前在学中。在学习当中我会分享我所学到的知识。

评论

发布
暂无评论
如何制作登录界面_海瞳Seapupil_InfoQ写作社区