正在进入朵朵云 ID Center

页面准备中,请稍候自动进入。

3
亮色高级版 · 多地区 Apple ID 展示

Apple ID
共享账号中心

这里可以集中展示美区、日区、港区等 Apple ID。你后续只需要把账号填进下方 ID 框里,就能变成一个完整的共享账号页面。

0当前展示 ID
4+支持地区
24H人工维护更新
9:41
账号状态面板
自动读取下方账号配置
可用
apple-id-demo@icloud.com美区
安全提醒
请勿登录 iCloud,仅用于 App Store
重要
密码/验证码建议联系客服获取
页面特点
响应式卡片,复制按钮,地区筛选
高级版
手机端也会自动适配
ID BOX

苹果 ID 展示框

每个框就是一个账号位。你后面把真实 ID 替换进去即可。支持复制 ID、地区筛选、状态展示、使用人数提示。

NOTICE

使用规则

这部分可以防止用户乱登、乱改资料。你也可以把规则改成自己的文案。

登录提醒

  • 仅建议登录 App Store,不要登录 iCloud。
  • 不要修改账号密码、密保、地区、付款方式。
  • 登录后下载需要的应用,完成后及时退出。
  • 遇到验证或锁定,请联系客服处理。

联系方式

  • 客服 Telegram:@ddjsy88
  • 账号会不定期维护,页面内容以后可直接更新。
  • 如需要隐藏密码,可只公开 ID,密码走客服发放。
  • 建议把本页面部署到你的商城或教程站入口。
已复制
引入。 */ (function () { 'use strict'; var WAIT_SECONDS = 3; var SCAN_TIMEOUT = 10000; var startedAt = Date.now(); function isTargetButton(el) { if (!el || el.nodeType !== 1) return false; var text = (el.textContent || '').replace(/\s+/g, ''); return el.id === 'knowBtn' || el.id === 'noticeKnowBtn' || el.classList.contains('know-btn') || el.classList.contains('notice-confirm') || text.indexOf('我知道了') !== -1 || text.indexOf('知道了') !== -1; } function findButton() { var selectors = [ '#knowBtn', '#noticeKnowBtn', '.know-btn', '.notice-confirm', '.notice-btn', '.modal button', '.popup button', '.notice-modal button', '.login-notice button', 'button' ]; for (var i = 0; i < selectors.length; i++) { var list = document.querySelectorAll(selectors[i]); for (var j = 0; j < list.length; j++) { if (isTargetButton(list[j])) return list[j]; } } return null; } function findModal(btn) { var modalSelectors = [ '#loginNoticeModal', '#noticeModal', '#loginModal', '.login-notice-modal', '.login-notice', '.notice-modal', '.notice-popup', '.modal', '.popup', '.mask', '.overlay' ]; for (var i = 0; i < modalSelectors.length; i++) { var found = btn.closest && btn.closest(modalSelectors[i]); if (found) return found; } var node = btn.parentElement; while (node && node !== document.body) { var style = window.getComputedStyle(node); var rect = node.getBoundingClientRect(); var bigEnough = rect.width > window.innerWidth * 0.45 && rect.height > 120; if ((style.position === 'fixed' || style.position === 'absolute') && bigEnough) { return node; } node = node.parentElement; } return null; } function setButtonText(btn, left) { if (!btn) return; if (left > 0) { btn.textContent = '我知道了(' + left + ')'; } else { btn.textContent = '我知道了'; } } function enableButton(btn) { if (!btn || btn.dataset.ddyCountdownDone === '1') return; btn.dataset.ddyCountdownDone = '1'; btn.disabled = false; btn.removeAttribute('disabled'); btn.setAttribute('aria-disabled', 'false'); btn.style.opacity = '1'; btn.style.pointerEvents = 'auto'; btn.style.cursor = 'pointer'; setButtonText(btn, 0); } function closeModal(btn) { var modal = findModal(btn); if (modal) { modal.style.display = 'none'; modal.style.visibility = 'hidden'; modal.style.opacity = '0'; modal.setAttribute('aria-hidden', 'true'); } document.documentElement.style.overflow = ''; document.body.style.overflow = ''; document.body.classList.remove('modal-open', 'popup-open', 'no-scroll'); } function startCountdown(btn) { if (!btn || btn.dataset.ddyCountdownStarted === '1') return; btn.dataset.ddyCountdownStarted = '1'; var endAt = Date.now() + WAIT_SECONDS * 1000; var timer = null; var rafId = null; btn.disabled = true; btn.setAttribute('disabled', 'disabled'); btn.setAttribute('aria-disabled', 'true'); btn.style.opacity = '0.55'; btn.style.pointerEvents = 'none'; btn.style.cursor = 'not-allowed'; function tick() { var leftMs = endAt - Date.now(); var left = Math.ceil(leftMs / 1000); if (left > 0) { setButtonText(btn, left); rafId = window.requestAnimationFrame ? requestAnimationFrame(tick) : null; return; } if (timer) clearInterval(timer); if (rafId && window.cancelAnimationFrame) cancelAnimationFrame(rafId); enableButton(btn); } tick(); timer = setInterval(tick, 120); // 强制兜底:即使 iPhone/Safari 暂停了动画或定时器,也最多 4 秒自动解锁 setTimeout(function () { if (timer) clearInterval(timer); if (rafId && window.cancelAnimationFrame) cancelAnimationFrame(rafId); enableButton(btn); }, WAIT_SECONDS * 1000 + 1000); btn.addEventListener('click', function (e) { if (btn.disabled || btn.dataset.ddyCountdownDone !== '1') { e.preventDefault(); e.stopPropagation(); return false; } closeModal(btn); }, true); } function boot() { var btn = findButton(); if (btn) { startCountdown(btn); return true; } return false; } // 不等 window.onload,立即尝试启动,避免图片、Logo、统计代码加载慢导致卡住 boot(); if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', boot, { once: false }); } var observer = null; if (window.MutationObserver) { observer = new MutationObserver(function () { if (boot() && observer) observer.disconnect(); if (Date.now() - startedAt > SCAN_TIMEOUT && observer) observer.disconnect(); }); observer.observe(document.documentElement, { childList: true, subtree: true }); } // 从 Safari 后台/返回缓存恢复时,再检查一次 window.addEventListener('pageshow', function () { var btn = findButton(); if (btn && btn.dataset.ddyCountdownDone !== '1') { enableButton(btn); } }); document.addEventListener('visibilitychange', function () { if (!document.hidden) { var btn = findButton(); if (btn && btn.dataset.ddyCountdownDone !== '1') { enableButton(btn); } } }); })();