|
@@ -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)
|
|
|
}
|
|
|
|