Browse Source

ws to ajax

xjc 2 years ago
parent
commit
e4b442b229
1 changed files with 15 additions and 12 deletions
  1. 15 12
      js/game.js

+ 15 - 12
js/game.js

@@ -81,12 +81,12 @@ if (!uid || !uname) {
 		"text-bg.png",
 		"time-box.png", "trap1.png", "trap2.png", "trap3.png", "trap4.png","mute.png"
 	], function() {})
-	waiting(function() {
-		$load.fadeOut(function() {
-			$(this).remove();
-			init();
-		});
-	})
+	// waiting(function() {
+	// 	$load.fadeOut(function() {
+	// 		$(this).remove();
+	// 		init();
+	// 	});
+	// })
 }
 
 // 初始化
@@ -399,13 +399,16 @@ if(!uid || !uname){
 	registUrl = registUrl + "/"+uid
 	$.post(registUrl,JSON.stringify({uid,uname}),function(res){
 		preload(["bg.png","figure.png","img1.png","img2.png","img3.png","line.png","qus-top.png","text-bg.png","time-box.png","trap1.png","trap2.png","trap3.png","trap4.png"],function(){
-			waiting(function(){
-				$load.fadeOut(function(){
-					$(this).remove();
-					init();
-				});
-			})
+			// waiting(function(){
+			// 	$load.fadeOut(function(){
+			// 		$(this).remove();
+			// 		init();
+			// 	});
+			// })
 		})
 	})
+	var timer = window.setInterval(function() {
+		$.post(registUrl,JSON.stringify({uid,uname}),function(res){})
+	}, 1000)
 }