| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859 |
- window.ObjectPools = null;
- window.Games = null;
- // 后配音关闭开启按钮
- window.OnOff = true;
- window.timer = null;
- window.MySetting = {
- match_time: 60,
- life_value : 3,
- suspend_text : "等待中...",
- share : "",
- sound_value : 0.2,
- time : [40,20,10],
- };
- window.PlayerInfo = {
- Left: {
- id: 9527,
- name: "汪汪husky",
- gender: 0,
- // head: "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=857896439,118415596&fm=27&gp=0.jpg",
- head: "https://dn-qn.move-it.club/FrRjuH4-RslUaAhofSB2NdMn9WMx",
- // head: "https://www.yuyekeji.cn/media/user/Images/Share.png",
- isfirst: false
- },
- Right: {
- id: 9528,
- name: "妹妹husky",
- gender: 1,
- head: ""
- },
- };
- //游戏统计
- window.Statistics = {
- // time: 9999,
- playtime: 0,
- playwin: null,
- player1: {
- playerUserInfo: null,
- attackCount: 0,
- leftCount: 0,
- midCount: 0,
- rightCount: 0,
- continuitymax: 0,
- continuitymin: 0,
- miss: 0,
- score : 0
- },
- player2: {
- playerUserInfo: null,
- attackCount: 0,
- leftCount: 0,
- midCount: 0,
- rightCount: 0,
- continuitymax: 0,
- continuitymin: 0,
- miss: 0,
- score : 0
- },
- dishu:{
- num : 0
- },
- restStart : function(){
- Statistics.playtime = 0;
- Statistics.playwin = null;
- // var player1 = {
- // playerUserInfo: null,
- //
- // attackCount: 0,
- // leftCount: 0,
- // midCount: 0,
- // rightCount: 0,
- //
- // continuitymax: 0,
- // continuitymin: 0,
- //
- // miss: 0,
- // },
- //
- // Statistics.player1.playerUserInfo = null;
- // Statistics.player1.attackCount = 0;
- // Statistics.player1.leftCount = 0;
- // Statistics.player1.midCount = 0;
- // Statistics.player1.rightCount = 0;
- // Statistics.player1.continuitymax = 0;
- // Statistics.player1.continuitymin = 0;
- //
- // Statistics.player1.miss = 0;
- // Statistics.player1.score = 0;
- this.removes(Statistics.player1);
- this.removes(Statistics.player2);
- //地鼠出来次数
- Statistics.dishu.num = 0
- UserInfo.PlayerGameData = {
- power : 0,
- powerMax : 0,
- //默认飞过的星球
- currtag : 0,
- //流浪距离系数
- coefficient : 0,
- everypowerdata : [],
- everypowerdataOK : []
- }
- },
- removes : function(player){
- player.playerUserInfo = null;
- player.attackCount = 0;
- player.leftCount = 0;
- player.midCount = 0;
- player.rightCount = 0;
- player.continuitymax = 0;
- player.continuitymin = 0;
- player.miss = 0;
- player.score = 0;
- },
- addScore : function(playertype,score){
- var player = this.getPlayer(playertype);
- if (parseInt(player.score+score) <0) {
- player.score = 0;
- }else{
- if (score < 0) {
- // 减分
- // player.score= parseInt(player.score)+parseInt(score);
- // if (parseInt(player.score)<0) {
- // player.score = 0;
- // }
- }else{
- var temp = 0;
- switch (player.continuitymin) {
- case 0:
- temp = 0;
- break;
- case 1:
- temp = 10;
- break;
- case 2:
- temp = 20;
- break;
- case 3:
- temp = 30;
- break;
- case 4:
- temp = 40;
- break;
- default:
- temp = 40;
- break;
- }
- // 加分 要考虑连击
- // player.score= parseInt(player.score)+parseInt(score)+parseInt(player.continuitymin)
- player.score= parseInt(player.score)+parseInt(score)+temp
- }
- }
- Games.setScore(playertype,parseInt(player.score));
- },
- addCount: function (playertype, type) {
- var player = this.getPlayer(playertype);
- switch (type) {
- case 0:
- this.addLeftCount(player);
- break;
- case 1:
- this.addMidCount(player);
- break;
- case 2:
- this.addRightCount(player);
- break;
- }
- player.attackCount++;
- // if (!player.continuitytag) {
- // player.continuitytag = true;
- // }
- player.continuitymin++;
- if (player.continuitymin > player.continuitymax) {
- player.continuitymax = player.continuitymin;
- }
- },
- //断了连续
- discontinuity: function (playertype) {
- var player = this.getPlayer(playertype);
- player.continuitymin = 0;
- // player.miss++;
- },
- addmiss: function (playertype) {
- var player = this.getPlayer(playertype);
- player.continuitymin = 0;
- player.miss++;
- },
- gethit: function (playertype) {
- var player = this.getPlayer(playertype);
- return player.continuitymin;
- },
- getPlayer: function (playertype) {
- var player = Statistics.player1;
- if (playertype == 0) {
- return Statistics.player1;
- } else {
- return Statistics.player2;
- }
- },
- addLeftCount: function (player) {
- player.leftCount++;
- },
- addMidCount: function (player) {
- player.midCount++;
- },
- addRightCount: function (player) {
- player.rightCount++;
- },
- };
- window.Btn = null;
- window.UserInfo = {
- Player : {
- id : 200,
- name : "本地汪汪",
- head : "https://ss0.bdstatic.com/" +
- "70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/" +
- "u=3356744803,2445309553&fm=26&gp=0.jpg",
- gender : 0
- },
- PlayerGameData : {
- power : 0,
- powerMax : 0,
- //默认飞过的星球
- currtag : 0,
- //流浪距离系数
- coefficient : 0,
- everypowerdata : [],
- //打中
- everypowerdataOK : [],
- },
- args : {
- }
- }
- window.GameData = {
- gameStartTime : 0,
- }
- window.RankingListData = {
- // {"createTime":0,
- // "isSurpass":false,
- // "isVip":0,
- // "maxCombo":0,
- // "nickName":"好友姓名200",
- // "portraits":"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,
- // 2132538438&fm=26&gp=0.jpg",
- // "score":160000,
- // "sex":0,
- // "userId":200}
- // {
- // createTime:0,
- // isVip:0,
- // maxCombo:0,
- // nickName:"姓名98",
- // portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- // "2538438&fm=26&gp=0.jpg",
- // rank:98,
- // score:9902,
- // sex:0,
- // surpass:false,
- // userId:9316
- // },
- //最后的排行榜
- listdata0 :[
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名98好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:1,
- score:9902,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名99好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:2,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:200
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名100好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:3,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名10好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:101,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名102好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:102,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名103好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:103,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名104好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:104,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名105好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:105,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名106好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:106,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名107好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:107,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名108好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:108,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名109好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:109,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名110好友",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:110,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- ],
- listdata1 :[
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名98全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:98,
- score:9902,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名99全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:99,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:200
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名100全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:100,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名10全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:101,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名102全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:102,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名103全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:103,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名104全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:104,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名105全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:105,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名106全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:106,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名107全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:107,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名108全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:108,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名109全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:109,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名110全国",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:110,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- ],
- setAdd0 : function(){
- let tempList = [
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"模拟添加出来的0_900",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:900,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"模拟添加出来的0_901",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:901,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"模拟添加出来的0_902",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:902,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- }
- ];
- for (var i = 0; i < tempList.length; i++) {
- this.listdata0.push(tempList[i])
- }
- },
- setAdd1 : function(){
- let tempList = [
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"1模拟添加出来的0_900",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:900,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"1模拟添加出来的0_901",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:901,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"1模拟添加出来的0_902",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:902,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"1模拟添加出来的0_902",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:902,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- },
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"1模拟添加出来的0_902",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- "2538438&fm=26&gp=0.jpg",
- rank:902,
- score:10000,
- sex:0,
- isSurpass:false,
- userId:9316
- }
- ];
- for (var i = 0; i < tempList.length; i++) {
- this.listdata1.push(tempList[i])
- }
- },
- UserId : 200,
- myRank : {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"汪汪",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/" +
- "it/u=1341035150,2132538438&fm=26&gp=0.jpg",
- rank:1,
- score:9900,
- sex:0,
- surpass:false,
- userId:200
- },
- //前中后
- aroundArr : [
- // {
- // createTime:0,
- // isVip:0,
- // maxCombo:0,
- // nickName:"姓名98",
- // portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150,213" +
- // "2538438&fm=26&gp=0.jpg",
- // rank:98,
- // score:9902,
- // sex:0,
- // surpass:false,
- // userId:9316
- // },
- null,
- {
- createTime:0,
- isVip:0,
- maxCombo:0,
- nickName:"姓名99",
- portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/" +
- "it/u=1341035150,2132538438&fm=26&gp=0.jpg",
- rank:0,
- score:9900,
- sex:0,
- surpass:false,
- userId:200
- },
- // {
- // createTime:0,
- // isVip:0,
- // maxCombo:0,
- // nickName:"姓名100",
- // portraits:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1341035150," +
- // "2132538438&fm=26&gp=0.jpg",
- // rank:100,
- // score:9900,
- // sex:0,
- // surpass:false,
- // userId:5414
- // }
- null
- ]
- }
- window.ShareImage = {
- img : ""
- }
- window.Log = {
- isShow : true,
- // isShow : false,
- info(){
- if (this.isShow) {
- console.log.apply(console,arguments);
- }
- }
- }
- // window.times = {
- // time : null
- // }
|