liting2017 6 years ago
parent
commit
6affda85b3
3 changed files with 11 additions and 10 deletions
  1. 4 4
      src/css/newMenu/public.css
  2. 2 1
      src/js/public.js
  3. 5 5
      src/js/register.js

+ 4 - 4
src/css/newMenu/public.css

@@ -855,13 +855,13 @@ input:-webkit-autofill {
 
 .loading p span{
 	display: inline-block;
-	font-size: 30px;
+	font-size: 20px;
 	color: #17a2b8;
-	transition: all 1s ease-in-out;
+	transition: all .2s ease-in-out;
 }
 .loading p span.active{
-	margin-left: -10px;
-	transition: all 1s ease-in;
+	margin-left: -6px;
+	transition: all .2s ease-in;
 }
 /* banner */
 .carousel{

+ 2 - 1
src/js/public.js

@@ -310,9 +310,10 @@ $(function(){
 			$('.loading div').html(ps);
 		function active(){
 			i++;
+			console.log(i)
 			if(i>txtArr.length){
 				i=0;
-			}
+			};
 			$('.loading p span').eq(i).addClass('active').siblings().removeClass('active');
 		}
 	    var setTime =setInterval(()=>{active()},100);

+ 5 - 5
src/js/register.js

@@ -157,8 +157,6 @@ $(function () {
     //表单提交
     $("#form_register").submit(function (e) {
         e.preventDefault();
-        console.log()
-        return;
         var user = $("#username").val(),
             usePhoto = $('#usePhoto').val(),
             password1 = $("#userpassword").val(),
@@ -169,7 +167,8 @@ $(function () {
             msg('请填写必填项');
             return;
         } else {
-            $('.loading').show().css({'opacity':'0'}).find('p').html('');
+            //$('.loading').show().css({'opacity':'0'}).find('p').html('');
+            $('.loading').show()
             $.ajax({
                 type: "POST",
                 dataType: "json",
@@ -182,6 +181,7 @@ $(function () {
                     "mobileCode": mobileCode
                 },
                 success: function (rest) {
+                    $('.loading').hide()
                     if (rest.error && rest.error.length) {
                         msg(rest.error[0].message);
                     } else {
@@ -192,9 +192,9 @@ $(function () {
                                 $('.login').fadeIn(800);
                                 $('#form_register').fadeOut(800)
                             }
-                        },1000)
+                        },2000)
                     }
-                    $('.loading').hide()
+                   
                 }
             })
         }