您的意见非常宝贵,请在这里留下给我们的建议,
+我们将在后续做出相关改进。
+ + +commit f140c92dddba7d9c3583b3b68c95f15d26b4b47e Author: kubbo <390378816@qq.com> Date: Thu Jul 10 23:55:26 2025 +0800 init diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 0000000..99ff94f --- /dev/null +++ b/404.html @@ -0,0 +1,26 @@ + + +
+ + + +If you see this page, the nginx web server is successfully installed and +working. Further configuration is required.
+ +For online documentation and support please refer to
+nginx.org.
+Commercial support is available at
+nginx.com.
Thank you for using nginx.
+ + diff --git a/ios.html b/ios.html new file mode 100644 index 0000000..e30dacf --- /dev/null +++ b/ios.html @@ -0,0 +1,33 @@ + + + + + + + + +
'
+ // div2.style = 'position: absolute;right:0px;top:0px;width:50px;height:50px';
+ div2.style.position = 'absolute';
+ div2.style.right = '0px';
+ div2.style.top = '0px';
+ div2.style.width = '50px';
+ div2.style.height = '50px';
+ div.appendChild(div2);
+ var closeImg = document.getElementById('closeImg');
+ closeImg.onclick = removeIfram;
+ // onloadFunction();
+}
+
+// 防沉迷
+function IdCardFunction() {
+ window.open(webUrl);
+}
+
+function addQQGrp() {
+ window.open(window['kfQQGroupUrl']);
+}
+
+//下载YY游戏大厅
+function downYYGameHallFun() {
+ window.open(webUrl);
+}
+
+//开通会员
+function openYYVip() {
+ window.open(webUrl);
+}
+
+//开超玩会员
+function openChaoWanVip() {
+ window.open(webUrl);
+}
+
+function removeIfram() {
+ var div = document.getElementById('iframDiv');
+ if (div) {
+ document.body.removeChild(div);
+ }
+ div = document.getElementById('btnDiv');
+ if (div) {
+ document.body.removeChild(div);
+ }
+}
+
+function bannerNight() {}
+
+/**
+ * 屏蔽右键
+ */
+function stop() {
+ return false;
+}
+
+document.oncontextmenu = stop;
+
+//监听屏幕 方向--暂时不用
+window.onorientationchange = function(e) {
+ // var d = document.getElementById('screenHint');
+ // if (window.orientation == 180 || window.orientation == 0) {
+ // //竖屏状态
+ // d.style.display = 'none';
+ // }
+ // if (window.orientation == 90 || window.orientation == -90) {
+ // //横屏状态
+ // d.style.display = 'block';
+ // }
+}
+
+//断开游戏链接
+function closeSocket() {
+ Main.closesocket();
+}
+
+//加载项目工程
+var loadScript = function(list, callback) {
+ var loaded = 0;
+ var loadNext = function() {
+ loadSingleScript(list[loaded], function() {
+ loaded++;
+ if (loaded >= list.length) {
+ callback();
+ } else {
+ loadNext();
+ }
+ });
+ };
+ loadNext();
+};
+
+var loadTimes = 0;
+var jsScr = '';
+
+window['loadScript'] = loadScript;
+
+var loadSingleScript = function(src, callback) {
+ if (jsScr != src) {
+ loadTimes = 0;
+ }
+
+ if(src.indexOf('lib') > -1 || src.indexOf('main') > -1) {
+ var mainSuffix = getQueryString('mainSuffix');
+ if(mainSuffix) {
+ src = src.replace('.js', mainSuffix + '.js');
+ }
+ src += '?v=' + (isJsDebug ? Math.random() : window['mainVersion']);
+ }
+
+ jsScr = src;
+
+ var s = document.createElement('script');
+ s.type = 'text/javascript';
+ s.async = false;
+ s.src = src;
+
+ s.addEventListener('load', function() {
+ s.parentNode.removeChild(s);
+ s.removeEventListener('load', arguments.callee, false);
+ callback();
+ }, false);
+
+ s.addEventListener('error', function() {
+ s.parentNode.removeChild(s);
+ s.removeEventListener('load', arguments.callee, false);
+ loadTimes++;
+ if (loadTimes > 5) {
+ alert("主程序文件加载失败,请检测网络刷新游戏!\n " + src);
+ } else {
+ setTimeout(function() {
+ loadSingleScript(src, callback);
+ }, 2000);
+ }
+ }, false);
+ document.body.appendChild(s);
+};
+
+//开始启动游戏
+function start() {
+ //alert('维护中');
+ //return;
+
+ var xhr = new XMLHttpRequest();
+ xhr.open('GET', './manifest.json?v=1.1.1.2', true); // '?v=' + Math.random()
+
+ xhr.addEventListener('load', function() {
+ var manifest = JSON.parse(xhr.response);
+ var list = manifest.initial.concat(manifest.game);
+ window['gameAppJS'] = manifest['gameAppJS'];
+ loadScript(list, function() {
+ egret.runEgret({
+ renderMode: 'webgl',
+ audioType: 0,
+ calculateCanvasScaleFactor: function(context) {
+ var backingStore = context.backingStorePixelRatio ||
+ context.webkitBackingStorePixelRatio ||
+ context.mozBackingStorePixelRatio ||
+ context.msBackingStorePixelRatio ||
+ context.oBackingStorePixelRatio ||
+ context.backingStorePixelRatio || 1;
+ return (window.devicePixelRatio || 1) / backingStore;
+ }
+ });
+ });
+ });
+ xhr.send(null);
+}
+
+//上报
+reporting(10000, 1);
+
+loginFunction();
diff --git a/js/jszip.min_3648741c.js b/js/jszip.min_3648741c.js
new file mode 100644
index 0000000..6b31b5e
--- /dev/null
+++ b/js/jszip.min_3648741c.js
@@ -0,0 +1,7 @@
+!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.JSZip=e()}}(function(){return function e(t,r,n){function i(s,o){if(!r[s]){if(!t[s]){var u="function"==typeof require&&require;if(!o&&u)return u(s,!0);if(a)return a(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var l=r[s]={exports:{}};t[s][0].call(l.exports,function(e){var r=t[s][1][e];return i(r?r:e)},l,l.exports,e,t,r,n)}return r[s].exports}for(var a="function"==typeof require&&require,s=0;s