美文网首页
H5制作网页登录界面

H5制作网页登录界面

作者: Hither | 来源:发表于2016-09-12 20:28 被阅读10760次

    效果图:


    我使用的开发工具是JetBrains Webstorm,自行百度下,IDE很多,只是我很喜欢这个界面:

    建立我们的项目:

    1.新建一个空项目

    2.建立html文件和 images文件夹以及css文件夹
    3.提醒下 建立css文件的方法:

    注意新建的css文件 一定要后缀名是css

    开始动工:

    在index.html文件中 这样写:

    <!DOCTYPE html>
    <html lang="en"><head>    
    <meta charset="UTF-8">   
     <title>欢迎登录</title>   
     <link href="css/index.css" rel="stylesheet"></head>
    <body>
    <!--面板-->
    <div id="panel">   
     <!--面板的头部-->   
     <div class="panel-top">       
     <h2>欢迎登录教育系统</h2>    
    </div>    <!--面板的主要内容-->   
     <div class="panel-content">        
    <div class="int">          
     <label><img src="images/user.png" ></label>            
    <input type="text" placeholder="你的手机号/用户名">       
     </div>        
    <div class="int">            
    <label><img src="images/user.png" ></label>            
    <input type="password" placeholder="输入密码">        
    </div>        
    <!--配置信息-->        
    <div class="setting">            
    <a href="#" class="auto-login">
    <input type="checkbox">下次自动登录
    </a>           
     <a href="#" class="forget-pwd">忘记密码</a>        
    </div>        
    <div class="login">            
    <button>登录</button>        
    </div>        
    <div class="reg">还没账号?<a href="#">马上注册</a>        
    </div>    
    </div>    
    <!--面板的底部-->   
     <div class="panel-footer">        
    <span>社交账号登录:</span>        
    <img src="images/user.png">        
    <img src="images/user.png">       
     <img src="images/user.png">    
    </div>
    </div>
    </body>
    </html>
    

    书写样式表

    a, address, b, big, blockquote, body, center, cite, code, dd, del, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, label, legend, li, ol, p, pre, small, span, strong, u, ul, var{   
     padding: 0;   
     margin: 0;
    }
    /*去掉 内外边距*/
    *{    
    padding: 0;   
     margin: 0;
    }
    /*设置这个整体的容器的背景色*/
    body{    
    background-color: #F2F2F2;    
    /*让其水平居中*/   
     text-align: center;
    }
    /*面板*/
    #panel{    
    /*最大的容器距离顶部50个像素*/    
    margin-top: 50px;    
    display: inline-block;   
     background-color: white;   
     border: 1px solid #dddddd ;    
    padding: 30px;   
     border-radius: 6px;    
    /*水平 和垂直都是0  2个像素*/    
    /*设置阴影*/    
    box-shadow: 0 0 10px #999;   
     width: 260px;
    }
    /*面板头部*/
    #panel .panel-top{   
     font-size: 13px;    
    font-family: Arial;    
    font-weight: normal;    
    padding: 10px 0;    
    border-bottom: 1px solid #dddddd;    
    width: 220px;    
    margin: 0 auto;
    }
    /*面板中间*/
    #panel .panel-content{   
     margin-top: 20px;
    }
    #panel .panel-content .int{    
    height: 36px;    
    margin-bottom: 9px;    
    position: relative;
    }
    #panel .panel-content label{    
    position: absolute;    top: 7px;    
    left: 6px;
    }
    #panel .panel-content .int input{    
    width: 100%;    
    height: 100%;    
    border: 1px solid #dddddd;    
    padding-left: 40px;    
    /*输入框不超出设置的最大容器*/
    box-sizing: border-box;    
    border-radius: 6px;
    }
    #panel .panel-content input:focus{    
    /*取消边框*/   
     outline: none;   
     border: 1px solid orangered;   
     box-shadow: 0 0 2px orangered;
    }
    #panel .panel-content .pwd-login a{    
    display: inline-block;    
    color: gray;    
    font-size: 13px;
    }
    #panel .panel-content .pwd-login{   
     width: 260px;    
    height: 30px;    
    line-height: 30px;
    }
    #panel .panel-content .setting{   
    background-color: red;
    }
    #panel .panel-content .setting .forget-pwd{    float: right;
    }
    #panel .panel-content .setting .auto-login{    float: left;    
    text-decoration: none;
    }
    #panel .panel-content .pwd-login  input{    
    /*设置行内块级标签*/    
    display: inline-block;   
     width: 18px;    
    float: left;
    }
    #panel .login button{    
    margin-top: 20px;    
    width: 100%;    
    height: 33px;   
     border: 0;    
    color: white;    
    font-size: 18px;    
    margin-bottom: 10px;   
     border-radius: 6px;   
     background-color: orangered;
    }
    #panel .reg{   
     height: 30px;   
     line-height: 30px;   
     font-size: 13px;
    }
    #panel .reg a{   
     color: orangered;    
    text-decoration: none;    
    margin-left: 5px;
    }
    #panel .panel-footer{   
     height: 40px;    
    line-height: 40px;
    }
    #panel .panel-footer img{   
     /*设置图片居中*/   
     vertical-align: middle;
    }
    #panel .panel-footer span{    
    /*设置文字垂直居中*/    
    vertical-align: middle;
    }
    
    

    相关文章

      网友评论

          本文标题:H5制作网页登录界面

          本文链接:https://www.haomeiwen.com/subject/dtopettx.html