用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - javascript代码库

jquery登录框特效2

2013-01-28 作者: 小蜜锋举报

[javascript]代码库

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lte IE 7]><style>.main{display:none;} .support-note .note-ie{display:block;}</style>
<![endif]-->
<style>
body {
	background: #e1c192 url(images/wood_pattern.jpg);
}
</style>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<div class="container">
  <section class="main">
    <form class="form-2">
      <h1><span class="log-in">Log in</span> or <span class="sign-up">sign up</span></h1>
      <p class="float">
        <label for="login"><i class="icon-user"></i>Username</label>
        <input type="text" name="login" placeholder="Username or email">
      </p>
      <p class="float">
        <label for="password"><i class="icon-lock"></i>Password</label>
        <input type="password" name="password" placeholder="Password" class="showpassword">
      </p>
      <p class="clearfix"> <a href="#" class="log-twitter">Log in with Twitter</a>
        <input type="submit" name="submit" value="Log in">
      </p>
    </form>
  </section>
</div>
<!-- jQuery if needed --> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> 
<script type="text/javascript">
	$(function(){
	    $(".showpassword").each(function(index,input) {
	        var $input = $(input);
	        $("<p class='opt'/>").append(
	            $("<input type='checkbox' class='showpasswordcheckbox' id='showPassword' />").click(function() {
	                var change = $(this).is(":checked") ? "text" : "password";
	                var rep = $("<input placeholder='Password' type='" + change + "' />")
	                    .attr("id", $input.attr("id"))
	                    .attr("name", $input.attr("name"))
	                    .attr('class', $input.attr('class'))
	                    .val($input.val())
	                    .insertBefore($input);
	                $input.remove();
	                $input = rep;
	             })
	        ).append($("<label for='showPassword'/>").text("Show password")).insertAfter($input.parent());
	    });

	    $('#showPassword').click(function(){
	if($("#showPassword").is(":checked")) {
$('.icon-lock').addClass('icon-unlock');
$('.icon-unlock').removeClass('icon-lock');    
	} else {
$('.icon-unlock').addClass('icon-lock');
$('.icon-lock').removeClass('icon-unlock');
	}
	    });
	});
</script>
</body>
</html>

[代码运行效果截图]


jquery登录框特效2

[源代码打包下载]




网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...