|
@@ -406,7 +406,7 @@
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
|
|
|
- // claim bonus 超过2秒自动跳转到下载页
|
|
|
|
|
|
|
+ // claim bonus 超过1秒自动跳转到下载页
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
// 检查 URL 中是否包含 check=1 参数
|
|
// 检查 URL 中是否包含 check=1 参数
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
@@ -436,13 +436,13 @@
|
|
|
appLaunched = true;
|
|
appLaunched = true;
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
- // 2 秒后检查是否成功拉起 App
|
|
|
|
|
|
|
+ // 1 秒后检查是否成功拉起 App
|
|
|
setTimeout(function () {
|
|
setTimeout(function () {
|
|
|
if (!appLaunched) {
|
|
if (!appLaunched) {
|
|
|
// 未拉起 App,跳转到下载页
|
|
// 未拉起 App,跳转到下载页
|
|
|
window.location.href = downloadUrl;
|
|
window.location.href = downloadUrl;
|
|
|
}
|
|
}
|
|
|
- }, 2000);
|
|
|
|
|
|
|
+ }, 1000);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 为 Claim Bonus 按钮添加防重复点击逻辑(可选)
|
|
// 为 Claim Bonus 按钮添加防重复点击逻辑(可选)
|