代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/x-icon" href="./icons/favicon.ico" />
<link rel="apple-touch-icon" href="./icons/apple-touch-icon.png">
<link rel="manifest" href="./manifest.json" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>-->
<title>WebGAL</title>
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
<script type="module" crossorigin src="./assets/index-67389aea.js"></script>
<link rel="stylesheet" href="./assets/index-ea2dc34d.css">
</head>
<body>
<!--快速显示落地页,让用户感知不到加载的过程-->
<div id="ebg"></div>
<div id="Title_enter_page" onclick="enter()" style="
width: 2560px;
height: 1440px;
overflow: hidden;
position: absolute;
top: 0;
z-index: 14;
opacity: 1;
transition: opacity 1.5s;
">
<!-- 落地页背景-->
<div id="Title_bg_container" style="
height: 100%;
width: 100%;
position: absolute;
background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
top: 0;
opacity: 1;
transition: opacity 1s;
"></div>
<!-- 点击后的白色渐变-->
<div id="Title_white_container" style="
width: 100%;
height: 100%;
position: absolute;
top: 0;
opacity: 0;
background: linear-gradient(165deg,rgba(255,255,255,0.25) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.25) 100%);
transition: opacity 1s;
"></div>
<!-- 落地页文字-->
<div id="Title_enter_text" style="width: 100%;
position: absolute;
top: 0;
height: 100%;
opacity: 1;
font-size: 175%;
transition: opacity 1s;
z-index: 15;
font-family: '思源宋体',Georgia,serif">
<div class="toCenter" style="
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
">
<div class="StartButton" style="
letter-spacing: 0.25em ;
padding: 2em 2em 2em 2em;
text-shadow: 0 0 30px rgba(0,0,0,0.5);
transition: text-shadow 1s;
font-size: 175%;
">
PRESS THE SCREEN TO START
</div>
</div>
<div
style="position: absolute;
bottom: 1em;
display: flex;
justify-content: center;
width: 100%;
flex-flow: column;
align-items: center ">
<div style="padding: 0 0 0.25em 0">
Powered by <a href="https://github.com/MakinoharaShoko/WebGAL"
onclick="jump(event, 'https://github.com/MakinoharaShoko/WebGAL')">WebGAL</a> Framework
</div>
<div>
Made with ❤ by <a href="https://github.com/MakinoharaShoko"
onclick="jump(event, 'https://github.com/MakinoharaShoko')">Mahiru</a>
</div>
</div>
</div>
</div>
<div id="panic-overlay"> <!-- 紧急回避 --> </div>
<div id="root"></div>
<script>
/**
* 在窗口大小改变时进行强制缩放
*/
const ua = navigator.userAgent;
const isIOSDevice = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
function resize() {
const targetHeight = 1440;
const targetWidth = 2560;
const h = window.innerHeight; // 窗口高度
const w = window.innerWidth; // 窗口宽度
const zoomH = h / targetHeight; // 以窗口高度为基准的变换比
const zoomW = w / targetWidth; // 以窗口宽度为基准的变换比
const zoomH2 = w / targetHeight; // 竖屏时以窗口高度为基础的变换比
const zoomW2 = h / targetWidth; // 竖屏时以窗口宽度为基础的变换比
let mh = (targetHeight - h) / 2; // y轴移动距离
let mw = (targetWidth - w) / 2; // x轴移动距离
let mh2os = targetWidth / 2 - w / 2; // 竖屏时 y轴移动距离
let mw2os = targetHeight / 2 - h / 2; // 竖屏时 x轴移动距离
let transform = '';
let ebgTransform = '';
const root = document.getElementById('root'); // 获取根元素
const title = document.getElementById('Title_enter_page');
const ebg = document.getElementById('ebg');
const elements = [root, title];
if (w > h) {
const ebg = document.getElementById('ebg');
if (ebg) {
ebg.style.height = `100vh`;
ebg.style.width = `100vw`;
ebgTransform = '';
}
mw = -mw;
mh = -mh;
if (w * (9 / 16) >= h) {
transform = `translate(${mw}px, ${mh}px) scale(${zoomH},${zoomH})`;
}
if (w * (9 / 16) < h) {
transform = `translate(${mw}px, ${mh}px) scale(${zoomW},${zoomW})`;
}
} else {
/**
* 旋转
*/
if (ebg) {
ebg.style.height = `${targetHeight}px`;
ebg.style.width = `${targetWidth}px`;
}
mw2os = -mw2os;
if (h * (9 / 16) >= w) {
ebgTransform = `rotate(90deg) translate(${mw2os}px, ${mh2os}px) scale(${zoomH2 * 1.75},${zoomH2 * 1.75})`;
transform = `rotate(90deg) translate(${mw2os}px, ${mh2os}px) scale(${zoomH2},${zoomH2})`;
}
if (h * (9 / 16) < w) {
ebgTransform = `rotate(90deg) translate(${mw2os}px, ${mh2os}px) scale(${zoomW2 * 1.75},${zoomW2 * 1.75})`;
transform = `rotate(90deg) translate(${mw2os}px, ${mh2os}px) scale(${zoomW2},${zoomW2})`;
}
/**
* iOS 不强制旋转
*/
if(isIOSDevice){
const zoomWi = w/targetWidth;
transform = `translate(${-mw}px, ${-mh}px) scale(${zoomWi},${zoomWi})`
}
}
if (ebg) {
ebg.style.transform = ebgTransform;
}
for (const element of elements) {
if (element) {
element.style.transform = transform;
}
}
}
resize();
window.onload = resize;
window.onresize = resize;
// 监听键盘 F11 事件,全屏时触发页面调整
document.onkeydown = function (event) {
const e = event;
if (e && e.key === 'F11') {
setTimeout(() => {
resize();
}, 100);
}
};
</script>
<script>
/**
* 注册 Service Worker
*/
const u = navigator.userAgent;
const isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); // 判断是否是 iOS终端
if ("serviceWorker" in navigator && !isIOS) {
navigator.serviceWorker.register("./webgal-serviceworker.js").then(function (reg) {
// registration worked
console.log("Registration succeeded. Scope is " + reg.scope);
}).catch(function (error) {
// registration failed
console.log("Registration failed with " + error);
});
}
</script>
<!--<script type="module" src="/src/Core/util/resize.ts"></script>-->
<!--<script src="lib/live2d.min.js"></script>-->
<!--<script src="lib/live2dcubismcore.min.js"></script>-->
<script>
let enterPromise = new Promise(res => window.enterPromise = res);
let renderPromise = new Promise(res => window.renderPromise = res);
/**
* 将播放bgm的事件发送出去
*/
Promise.all([enterPromise, renderPromise]).then(() => {
const event = new MouseEvent("click", {
"view": window,
"bubbles": true,
"cancelable": true
});
const target = document.getElementById("enter_game_target");
if (target) {
target.dispatchEvent(event);
}
if (event) {
const logo = document.getElementById("logo_target");
if (logo) {
logo.style.display = "contents";
}
}
});
function jump(event, url) {
// 获取点击事件,阻止点击事件冒泡触发 `enter` 事件
event.stopPropagation();
// window.location = url;
}
/**
* 点击屏幕,进入引擎主界面
*/
function enter() {
const bgContainer = document.getElementById("Title_bg_container");
if (bgContainer) {
bgContainer.style.opacity = "0"; // 调整标题背景的透明度
}
const enterText = document.getElementById("Title_enter_text");
if (enterText) {
enterText.style.opacity = "0"; // 调整标题文字的透明度
}
const whiteContainer = document.getElementById("Title_white_container");
setTimeout(() => {
if (whiteContainer) {
whiteContainer.style.opacity = "1";
}
}, 50); // 在50ms后开始显示白色渐变
const title = document.getElementById("Title_enter_page");
setTimeout(() => {
if (title)
title.style.opacity = "0";
}, 500); //500ms后开始降低落地页透明度
if (!isIOS && title) {
title.style.pointerEvents = "none"; //落地页不再响应点击
title.style.background = "linear-gradient( #a1c4fd 0%, #c2e9fb 100%)"; //改变标题渐变效果
}
setTimeout(() => {
if (title) {
title.style.display = "none";
}
}, 2000); // 将落地页设置为不显示
window.enterPromise();
delete window.enterPromise;
}
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。