Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,minimal-ui" />
- <title></title>
- <script src="/Content/js/jquery-1.10.2.js"></script>
- <script src="/Content/plugins/layer_mobile/layer.js"></script>
- <script>
- function callAPI(method, params) {
- params = params || {};
- if (navigator.userAgent.match(/ipad|ipod|iphone/i)) {
- if (typeof (window.webkit) === "object") {
- window.webkit.messageHandlers.myapp.postMessage({
- 'method': method,
- 'params': params
- });
- } else {
- alert("客户端版本不支持");
- }
- } else {
- if (typeof (window.myapp) === "object") {
- // alert(typeof window.myapp[method]);
- if (params) {
- window.myapp[method].apply(window.myapp, [JSON.stringify(params)]);
- } else {
- window.myapp[method].apply(window.myapp);
- }
- } else {
- alert("客户端版本不支持");
- }
- }
- }
- function isApp() {
- if (navigator.userAgent.match(/ipad|ipod|iphone/i)) {
- return typeof (window.webkit) === "object";
- } else {
- return typeof (window.myapp) === "object";
- }
- }
- function isIOS() {
- return navigator.userAgent.match(/ipad|ipod|iphone/i);
- }
- </script>
- <style>
- body {
- text-align: center;
- }
- .hcenter {
- margin-left: auto;
- margin-right: auto;
- }
- </style>
- </head>
- <body>
- <div class="hcenter" style="margin-top:80pt;display:none;" id="game_tips">
- 正在进入游戏...
- </div>
- <div class="hcenter" style="margin-top:80pt;display:none;" id="android_tips">
- <div>
- <p style="display:inline;" id="lab_tips">正在进入游戏...</p>
- <a style="display:inline;" href="http://u.txwyf.com/index.html?localIP=160.116.14.39&UserID=5418917&Cer=F73DF57EB96A41568B2AEAB586660EF0&UserLevel=0&LevelKey=dd183a1669ce77c91be54d811a4940fa&CaiPiaoUrl=http%3a%2f%2ftcp.txwyf.com%3a9002&H5Index=http%3a%2f%2fwww.keai6.com&AppUrl=http%3a%2f%2ftcp.txwyf.com%3a9001%2fH5Game%2fH5GameEntry&ServerListDomain=http%3a%2f%2ftcp.txwyf.com%3a170%2chttp%3a%2f%2ftcp.txwyf.com%3a170&SMSUrl=http%3a%2f%2ftcp.txwyf.com%3a9004%2fapi%2fDefault&Emcee_ID=0&r=1981">立即进入游戏</a>
- </div>
- <br /><br />
- <a href="#" onclick="h5RunGame();">从浏览器进入游戏</a>
- <div style="font-size:12px;">如果从APP多次进入游戏失败,推荐从浏览器进入</div>
- </div>
- <script>
- var timeHandler = null;
- function tipsCountdown(s, callfun) {
- $("#lab_tips").html(s + "秒后开始游戏");
- if (s > 0) {
- timeHandler = setTimeout(function () {
- tipsCountdown(s - 1, callfun);
- }, 1 * 1000);
- } else {
- callfun();
- }
- };
- function h5RunGame() {
- clearTimeout(timeHandler);
- callAPI('openUrl', { 'url': 'http://www.keai6.com' });
- callAPI('Close');
- }
- function layerConfirm(msg, callfun) {
- layer.open({
- content: msg
- , btn: ['确定', '取消']
- , yes: function (index) {
- callfun(true);
- layer.close(index);
- }, no: function (index) {
- callfun(false);
- layer.close(index);
- }
- });
- };
- function runGame() {
- if (isApp()) {
- if (isIOS()) {
- layerConfirm("由于IOS掉签问题,推荐从浏览器入口进入游戏。<br>点[确定]启动浏览器,点[取消]立即进入游戏", function (result) {
- if (result == true) {
- h5RunGame();
- }
- });
- } else {
- layerConfirm("推荐从浏览器入口进入游戏。<br>点[确定]启动浏览器,点[取消]立即进入游戏", function (result) {
- if (result == true) {
- h5RunGame();
- } else {
- window.location.href = "http://u.txwyf.com/index.html?localIP=160.116.14.39&UserID=5418917&Cer=F73DF57EB96A41568B2AEAB586660EF0&UserLevel=0&LevelKey=dd183a1669ce77c91be54d811a4940fa&CaiPiaoUrl=http%3a%2f%2ftcp.txwyf.com%3a9002&H5Index=http%3a%2f%2fwww.keai6.com&AppUrl=http%3a%2f%2ftcp.txwyf.com%3a9001%2fH5Game%2fH5GameEntry&ServerListDomain=http%3a%2f%2ftcp.txwyf.com%3a170%2chttp%3a%2f%2ftcp.txwyf.com%3a170&SMSUrl=http%3a%2f%2ftcp.txwyf.com%3a9004%2fapi%2fDefault&Emcee_ID=0&r=1981";
- }
- });
- return;
- }
- }
- $("#game_tips").show();
- window.location.href = "http://u.txwyf.com/index.html?localIP=160.116.14.39&UserID=5418917&Cer=F73DF57EB96A41568B2AEAB586660EF0&UserLevel=0&LevelKey=dd183a1669ce77c91be54d811a4940fa&CaiPiaoUrl=http%3a%2f%2ftcp.txwyf.com%3a9002&H5Index=http%3a%2f%2fwww.keai6.com&AppUrl=http%3a%2f%2ftcp.txwyf.com%3a9001%2fH5Game%2fH5GameEntry&ServerListDomain=http%3a%2f%2ftcp.txwyf.com%3a170%2chttp%3a%2f%2ftcp.txwyf.com%3a170&SMSUrl=http%3a%2f%2ftcp.txwyf.com%3a9004%2fapi%2fDefault&Emcee_ID=0&r=1981";
- }
- runGame();
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment