ws2z3gr2017 7 years ago
parent
commit
4faae15d5a
3 changed files with 31 additions and 9 deletions
  1. 4 1
      src/css/public.css
  2. 22 6
      src/js/public.js
  3. 5 2
      template/index.html

+ 4 - 1
src/css/public.css

@@ -112,7 +112,9 @@ header .nav_right a:hover{color: #2a6597;}
 
 .login_check u{float: right;line-height: 38px;}
 .login_check u a{color: #f18101;}
-.login_check label{height: 38px;line-height: 38px ;color: #f18101;font-weight: normal;background: url(../../img/check_lono.png) no-repeat center left;background-size:25% 40%;}
+.login_check label{height: 38px;line-height: 38px ;color: #f18101;font-weight: normal;}
+.lab_check{background: url(../../img/check_lo.png) no-repeat center left;background-size:34% 40%;}
+.lab_checkno{background: url(../../img/check_lono.png) no-repeat center left;background-size:34% 40%;}
 .login_check label input{margin-right: 4px; visibility: hidden;}
 .login_check label:hover{cursor: pointer;}
 .login_submit{width: 100%;height: 38px;font-size: 20px;background: #f18101;color: #FFFFFF;text-align: center;border: none;} 
@@ -120,3 +122,4 @@ header .nav_right a:hover{color: #2a6597;}
 .login_close{position: absolute;top: 0;right: 0;width: 50px;height: 50px;z-index: 2000;}
 .login_close:hover{cursor: pointer;}
 
+.login_check label:first-child{margin-right: 15px;}

+ 22 - 6
src/js/public.js

@@ -99,13 +99,29 @@ $(function(){
 			$(this).val('请输入密码').css({color:'#cccccc'})			
 		}		
 	});
-	$('#checks').attr('checked',false)
-	$('.login_check label input').click(function(){		
-		var Cheack=$(this).prop('checked')
-		if(Cheack){
-			$(this).parent().css({"background":"url(../img/check_lo.png) no-repeat center left","background-size":"25% 40%"})
+	$('#checks').attr('checked',true)
+	$('#checks').click(function(){			
+		var Cheack=$(this).prop('checked')		
+		if(Cheack){			
+			$(this).parent().css({"background":"url(../img/check_lo.png) no-repeat center left","background-size":"34% 40%"})
+			$('#checkst').prop('checked',false)
+			$('#checkst').parent().css({"background":"url(../img/check_lono.png) no-repeat center left","background-size":"34% 40%"})
 		}else{
-			$(this).parent().css({"background":"url(../img/check_lono.png) no-repeat center left","background-size":"25% 40%"})
+			$('#checkst').prop('checked',true)
+			$('#checkst').parent().css({"background":"url(../img/check_lo.png) no-repeat center left","background-size":"34% 40%"})
+			$(this).parent().css({"background":"url(../img/check_lono.png) no-repeat center left","background-size":"34% 40%"})
+		}
+	})
+	$('#checkst').click(function(){			
+		var Cheack_no=$(this).prop('checked')			
+		if(Cheack_no){			
+			$(this).parent().css({"background":"url(../img/check_lo.png) no-repeat center left","background-size":"34% 40%"})
+			$('#checks').prop('checked',false)
+			$('#checks').parent().css({"background":"url(../img/check_lono.png) no-repeat center left","background-size":"34% 40%"})
+		}else{
+			$('#checks').prop('checked',true)
+			$('#checks').parent().css({"background":"url(../img/check_lo.png) no-repeat center left","background-size":"34% 40%"})
+			$(this).parent().css({"background":"url(../img/check_lono.png) no-repeat center left","background-size":"34% 40%"})
 		}
 	})
 	//点击x

+ 5 - 2
template/index.html

@@ -431,8 +431,11 @@
 						<input type="text" name="pass" id="Lo_pass" value="请输入密码" />
 					</div>
 					<div class="login_check">
-						<label for="checks">
-							<input type="checkbox" name="chek" id="checks" />记住我
+						<label for="checks" class="lab_check">
+							<input type="checkbox" name="type" id="checks" />专家
+						</label>
+						<label for="checkst" class="lab_checkno">
+							<input type="checkbox" name="type" id="checkst" />企业
 						</label>
 						<u><a href="">忘记密码?</a></u>
 					</div>