基本信息
源码名称:透明登录界面
源码大小:0.51M
文件格式:.zip
开发语言:CSS
更新时间:2017-04-14
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 6 元 
   源码介绍

首先在head中加载以下代码

<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/loginMy.css"/>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>蓝色透明登录界面模板</title>

<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/loginMy.css"/>

<style>
html,body{width:100%;}
</style>

</head>
<body>

<div class="main">

<div class="center">
<form action="" id="formOne" method="post"onsubmit="return submitB()" >
<i class="fa fa-user Cone">  | </i>
<input type="text" name="uer" id="user" placeholder="用户名"onblur="checkUser()"/>
<span id="user_pass"></span>
<br/>
<i class="fa fa-key Cone">  | </i>
<input type="password" name="pwd" id="pwd" placeholder="密码"onblur="checkUser1()"/>
<span id="pwd_pass"></span>
<br/>
<i class="fa fa-folder-open Cone">  | </i>
<input type="text" name="surePwd" id="surePwd" placeholder="验证码"onblur="checkUser2()"/>
<span id="surePwd_pass" ></span><br/>
<input type="submit" value="登录" id="submit" name="submit">
<br/>
</form>
</div>

</div>


<script type="text/javascript" src="js/loginMy.js"></script>
</body>
</html>