|
|
|
@@ -367,6 +367,34 @@
|
|
|
|
|
};
|
|
|
|
|
var EVIDENCE_RARITY_LABEL = { common: 'การ์ดธรรมดา', rare: 'การ์ด Rare', legendary: 'การ์ดชี้คนร้าย' };
|
|
|
|
|
|
|
|
|
|
/** กล่องดูการ์ดหลักฐานแบบขยาย (zoom) — ปิดด้วยปุ่ม ×, คลิกพื้นหลัง, หรือ Esc */
|
|
|
|
|
function openEvidenceCardLightboxPlay(imageUrl, label, rarity) {
|
|
|
|
|
if (!imageUrl) return;
|
|
|
|
|
var rar = String(rarity || 'common').toLowerCase();
|
|
|
|
|
var glow = EVIDENCE_RARITY_GLOW[rar] || EVIDENCE_RARITY_GLOW.common;
|
|
|
|
|
var ov = document.getElementById('evidence-card-lightbox');
|
|
|
|
|
if (!ov) {
|
|
|
|
|
ov = document.createElement('div');
|
|
|
|
|
ov.id = 'evidence-card-lightbox';
|
|
|
|
|
ov.style.cssText = 'position:fixed;inset:0;z-index:100001;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(5,8,18,.88);backdrop-filter:blur(4px)';
|
|
|
|
|
ov.innerHTML =
|
|
|
|
|
'<button type="button" class="ecl-close" aria-label="ปิด" style="position:absolute;top:22px;right:26px;width:46px;height:46px;border:none;border-radius:50%;cursor:pointer;font:900 26px/1 system-ui,sans-serif;color:#0a0e1a;background:linear-gradient(180deg,#ffd666,#f0b429);box-shadow:0 8px 22px rgba(0,0,0,.45)">×</button>' +
|
|
|
|
|
'<div class="ecl-stage" style="display:flex;flex-direction:column;align-items:center;gap:14px;max-width:92vw">' +
|
|
|
|
|
'<img class="ecl-img" alt="" style="display:block;width:auto;height:auto;max-width:min(86vw,520px);max-height:78vh;border-radius:16px" />' +
|
|
|
|
|
'<div class="ecl-cap" style="font:800 16px/1.3 Kanit,system-ui,sans-serif;color:#e7ecff;text-align:center;max-width:90vw"></div>' +
|
|
|
|
|
'</div>';
|
|
|
|
|
document.body.appendChild(ov);
|
|
|
|
|
var closeFn = function () { ov.style.display = 'none'; };
|
|
|
|
|
ov.addEventListener('click', function (e) { if (e.target === ov || (e.target.classList && e.target.classList.contains('ecl-close'))) closeFn(); });
|
|
|
|
|
document.addEventListener('keydown', function (e) { if (e.key === 'Escape' && ov.style.display !== 'none') closeFn(); });
|
|
|
|
|
}
|
|
|
|
|
var img = ov.querySelector('.ecl-img');
|
|
|
|
|
var cap = ov.querySelector('.ecl-cap');
|
|
|
|
|
if (img) { img.style.boxShadow = '0 0 44px ' + glow + ',0 22px 60px rgba(0,0,0,.6)'; img.src = imageUrl; }
|
|
|
|
|
if (cap) cap.textContent = label || '';
|
|
|
|
|
ov.style.display = 'flex';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showInSceneEvidenceReveal(res, onDone) {
|
|
|
|
|
var done = false;
|
|
|
|
|
var finish = function () { if (done) return; done = true; onDone(); };
|
|
|
|
@@ -414,7 +442,9 @@
|
|
|
|
|
var img = document.createElement('img');
|
|
|
|
|
img.src = c.imageUrl;
|
|
|
|
|
img.alt = EVIDENCE_RARITY_LABEL[rar] || 'หลักฐาน';
|
|
|
|
|
img.style.cssText = 'display:block;width:min(34vw,260px);height:auto;border-radius:14px;box-shadow:0 0 36px ' + glow + ',0 18px 50px rgba(0,0,0,.6)';
|
|
|
|
|
img.style.cssText = 'display:block;width:min(34vw,260px);height:auto;border-radius:14px;box-shadow:0 0 36px ' + glow + ',0 18px 50px rgba(0,0,0,.6);cursor:zoom-in';
|
|
|
|
|
img.title = 'แตะเพื่อดูใหญ่';
|
|
|
|
|
img.addEventListener('click', function () { openEvidenceCardLightboxPlay(c.imageUrl, EVIDENCE_RARITY_LABEL[rar] || '', rar); });
|
|
|
|
|
img.onerror = function () { this.onerror = null; this.style.width = '200px'; this.style.height = '300px'; this.style.background = '#1b2240'; this.removeAttribute('src'); };
|
|
|
|
|
var tag = document.createElement('div');
|
|
|
|
|
tag.style.cssText = 'font:800 14px/1 Kanit,system-ui,sans-serif;color:#fff;opacity:.92';
|
|
|
|
|