找火鸡^^

2024-01-02 10:43:09

欢迎来到程序小院

找火鸡

玩法:记忆翻牌游戏,不同关卡会有不同数目的火鸡,卡牌自由滚动,记住火鸡的位置,
规定的时间内找到火鸡所在的位置,快去找火鸡吧^^。

开始游戏icon-default.png?t=N7T8https://www.ormcc.com/play/gameStart/236

html

<canvas?id="gameCanvas"?width="366"?height="550"?class="gameCanvas"?tabindex="99"></canvas>

css

canvas{
outline: none; 
width: 366px; 
height: 550px;
}

js

//?初始化
Game9G.prototype.init?=?function()?{
?this.spid?=?this.utils.getParameter("spid");
?this.homeurl?=?"http://mp.weixin.qq.com/s?__biz=MzAwNzQ4NzQyOQ==
??&mid=207029465&idx=1&sn=7b3e89d22b38e1e1337bf3a98ccdfb46#rd";
?this.gzurl?=?"http://play.3gjj.cn";
?//?this.shareDomain?=?this.shareDomains[parseInt(Math.random()?*?
??this.shareDomains.length)];
?this.shareData.imgurl?=?"http://mmbiz.qpic.cn/mmbiz/
??2zpp2iaH4HWEgbChjnDCvrnNlGhflD2ia06fcvQtgvvU0wdDVdAHbxbGx
??K8SCMKFBIpo20ZbjLLHkrxzT7eyKiaiaQ/640";
?this.shareData.link?=?"http://play.3gjj.cn/games/dtsl/";
?switch?(this.utils.getAppType())?{
??case?"wx":
???this.app?=?new?Game9GWx(this);
???break;
??case?"uc":
???this.app?=?new?Game9GUC(this);
???break;
?}
};

//?分享
Game9G.prototype.share?=?function()?{
?//?调用各自?App?的分享接口
?this.app?&&?this.app.share();
}

//?提交成绩
Game9G.prototype.submit?=?function(callback)?{
?if?(localStorage.myuid?&&?this.score?!=?null)?{
??var?_this?=?this;
??setTimeout(function(){
???if?(confirm("?"))?{
????window.location?=_this.homeurl;
???}
???else?{
????window.location?=?_this.homeurl;
???}
???callback?&&?callback.apply(null);
??},?500);
?}
?else?{
??window.location?=?this.homeurl;
??callback?&&?callback.apply(null);
?}
}


/*****************************?实用工具类?*********************************/

Game9GUtils?=?function(game9g)?{
?this.game9g?=?game9g;
}

//?判断当前?App?[微信、UC浏览器、etc]
Game9GUtils.prototype.getAppType?=?function()?{
?var?e?=?navigator.userAgent.toLowerCase();
?if?(e.match(/MicroMessenger/i)?==?"micromessenger")?{
??return?"wx";
?}
?else?if?(e.match(/UCBrowser/i)?==?"ucbrowser")?{
??return?"uc";
?}
?else?{
??return?"other";
?}
}

//?获取?URL?参数
Game9GUtils.prototype.getParameter?=?function(name)?{
?var?reg?=?new?RegExp("(^|&)"?+?name?+?"=([^&]*)(&|$)",?"i");
?var?r?=?window.location.search.substr(1).match(reg);
?if?(r?!=?null)?return?r[2];?return?null;
}

//?显示分享图片
Game9GUtils.prototype.showShare?=?function()?{
?var?img?=?document.getElementById("game9gshare");
?if?(img)?{
??img.style.display?=?"";
?}
?else?{
??img?=?document.createElement("img");
??img.id?=?"game9gshare";
??img.src?=?"share.png";
??img.className?=?"game9gshare";
??//img.addEventListener("click",?this.hideShare);
??img.addEventListener("touchstart",?this.hideShare);
??document.getElementsByTagName("body")[0].appendChild(img);
?}
}

//?隐藏分享图片
Game9GUtils.prototype.hideShare?=?function()?{
?var?img?=?document.getElementById("game9gshare");
?if?(img)?img.style.display?=?"none";
}

//?显示分享对话框
Game9GUtils.prototype.shareConfirm?=?function(content,?callback)?{
?var?_this?=?this;
?setTimeout(function(){
??new?Game9GUtilsDialog(_this.game9g,?{
???title:?"游戏提示",
???content:?content,
???buttons:?[
????{?label:?"取消",?click:?null?},
????{?label:?"确定",?click:?callback?}
???]
??}).open();
?},?1000);
}

//?对话框
Game9GUtilsDialog?=?function(game9g,?options)?{
?this.game9g?=?game9g;
?this.title?=?options.title;
?this.content?=?options.content;
?this.buttons?=?options.buttons;
}

//?打开对话框
Game9GUtilsDialog.prototype.open?=?function()?{
?if?(document.getElementById("game9gdialog"))?return;
?var?div?=?document.createElement("div");
?div.id?=?"game9gdialog";
?div.className?=?"game9gdialog";
?div.innerHTML?=?"<header><h2>"?+?this.title?+?"</h2></header><section>"?+?
??this.content?+?"</section><footer></footer>";
?for?(var?i=0;?i<this.buttons.length;?i++)?{
??var?btn?=?this.buttons[i];
??var?a?=?document.createElement("a");
??a.innerHTML?=?btn.label;
??//a.addEventListener("click",?btn.click);
??//a.addEventListener("click",?this.close);
??a.addEventListener("touchstart",?btn.click);
??a.addEventListener("touchstart",?this.close);
??div.getElementsByTagName("footer")[0].appendChild(a);
?}
?document.getElementsByTagName("body")[0].appendChild(div);
?var?mask?=?document.createElement("div");
?mask.id?=?"game9gmask";
?mask.className="game9gmask";
?document.getElementsByTagName("body")[0].appendChild(mask);
}

//?关闭对话框
Game9GUtilsDialog.prototype.close?=?function()?{
?var?div?=?document.getElementById("game9gdialog");
?if?(div)?document.getElementsByTagName("body")[0].removeChild(div);
?var?mask?=?document.getElementById("game9gmask");
?if?(mask)?document.getElementsByTagName("body")[0].removeChild(mask);
}

//?Ajax?请求
Game9GUtils.prototype.ajax?=?function(url,?success)?{
?new?Game9GUtilsAjax(this.game9g,?"GET",?url,?null,?"json",?success);
}

//?JSONP?请求
Game9GUtils.prototype.jsonp?=?function(url,?data,?param,?success)?{
?new?Game9GUtilsJsonp(url,?data,?param,?success).request();?
}

//?Ajax?类
Game9GUtilsAjax?=?function(game9g,?method,?url,?data,?type,?success)?{
?this.game9g?=?game9g;
?this.xmlhttp?=?null;
?if?(window.XMLHttpRequest)?{
??this.xmlhttp?=?new?XMLHttpRequest();
?}
?else?{
??this.xmlhttp?=?new?ActiveXObject("Microsoft.XMLHTTP");
?}
?this.type?=?type;
?this.success?=?success;
?this.xmlhttp.open(method,?url,?true);
?var?_this?=?this;
?this.xmlhttp.onreadystatechange?=?function()?{
??_this.callback.apply(_this);
?};
?this.xmlhttp.send(data);
}

//?Ajax?请求回调
Game9GUtilsAjax.prototype.callback?=?function()?{
?if?(this.xmlhttp.readyState?==?4?&&?this.xmlhttp.status?==?200)?{
??var?data?=?null;
??switch?(this.type)?{
???case?"text":
????data?=?this.xmlhttp.responseText;
????break;
???case?"json":
????try?{
?????data?=?JSON.parse(this.xmlhttp.responseText);
????}
????catch?(e)?{
?????data?=?this.xmlhttp.responseText;
????}
????break;
??}
??this.success?&&?this.success.call(this.xmlhttp,?data);
?}
}

//?JSONP?类
Game9GUtilsJsonp?=?function(url,?data,?jsonparam,?success,?timeout)?{
?var?finish?=?false;
?var?theHead?=?document.getElementsByTagName("head")[0]?||?document.documentElement;
?var?scriptControll?=?document.createElement("script");
?var?jsonpcallback?=?"jsonpcallback"?+?(Math.random()?+?"").substring(2);
?var?collect?=?function()?{
??if?(theHead?!=?null)?{
???theHead.removeChild(scriptControll);
???try?{
????delete?window[jsonpcallback];
???}?catch?(ex)?{?}
???theHead?=?null;
??}
?};
?var?init?=?function()?{
??scriptControll.charset?=?"utf-8";
??theHead.insertBefore(scriptControll,?theHead.firstChild);
??window[jsonpcallback]?=?function(responseData)?{
???finish?=?true;
???success(responseData);
??};
??if?(url.indexOf("?")?>?0)?{
???url?=?url?+?"&"?+?jsonparam?+?"="?+?jsonpcallback;
??}?else?{
???url?=?url?+?"?"?+?jsonparam?+?"="?+?jsonpcallback;
??}
??if?(typeof?data?==?"object"?&&?data?!=?null)?{
???for?(var?p?in?data)?{
????url?=?url?+?"&"?+?p?+?"="?+?escape(data[p]);
???}
??}
?};
?var?timer?=?function()?{
??if?(typeof?window[jsonpcallback]?==?"function")?{
???collect();
??}
??if?(typeof?timeout?==?"function"?&&?finish?==?false)?{
???timeout();
??}
?};
?this.request?=?function()?{
??init();
??scriptControll.src?=?url;
??window.setTimeout(timer,?10000);
?};
}

源码

需要源码请关注添加好友哦^ ^

转载:欢迎来到本站,转载请注明文章出处https://ormcc.com/

文章来源:https://blog.csdn.net/qq_16659821/article/details/135334075
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。