diff --git a/docs/files/ws-application-expb-giddy-2026-04-18.pdf b/docs/files/ws-application-expb-giddy-2026-04-18.pdf new file mode 100644 index 0000000..d4cfc87 Binary files /dev/null and b/docs/files/ws-application-expb-giddy-2026-04-18.pdf differ diff --git a/docs/la2.html b/docs/la2.html new file mode 100644 index 0000000..e67fa8e --- /dev/null +++ b/docs/la2.html @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + OFiDCrypt Docs | WS Application + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + +
+ + + + + + + + + + +
+ + + + + +
+
+ + +

+ Download / View PDF Below +

+ + +
+
+ + +

+ Welcome! We're new — and Giddy’s Shop is in development. Meanwhile, watch our + animated adventures and meet Giddy! + We encourage you to read our + Solana + article + for a sneak peek at the future of money — thanks for your patience! +

+ + +
+
+ +

WS Listing
+ Application

+

Home > Documents > WS Application

+
+ + +
+ + +
+ + +
+
+ + Docs Banner + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/main.html b/docs/main.html index 08aa795..153269e 100644 --- a/docs/main.html +++ b/docs/main.html @@ -261,6 +261,10 @@

Table of Contents 05. FAQ (Coming Soon) + + WS Listing Application: e𝕏PB / GIDDY Dollar + April 18th, 2026 + VISA Stablecoins: White Paper November 27th, 2025 diff --git a/explore.html b/explore.html index 0c36b80..9d18ac7 100644 --- a/explore.html +++ b/explore.html @@ -196,27 +196,31 @@

OFiDCrypt Services

- -
+ + +
- +

- Welcome! We're new — and Giddy’s Shop is in development. Meanwhile, watch our - animated adventures and meet Giddy! - We encourage you to read our - Solana - article - for a sneak peek at the future of money — thanks for your patience! + Available Now: Kinnected! Messenger / Wallet Early Access Beta. + Unlock Digital Gifting in two simple steps — + 1) Submit your Google + Play Email to enroll + as a tester. + 2) Click here to download.

+
- +

New Social
Wallets & Apps

Home > Free Apps

Check out the latest tools for your pocket, redefining how you chat and connect with friends and unlock new diff --git a/shop.html b/shop.html index 21136b7..d865862 100644 --- a/shop.html +++ b/shop.html @@ -775,84 +775,83 @@

Payment Summary

+ // Reset scroll to first image + setTimeout(() => { + scrollContainer.scrollLeft = 0; + }, 10); + + // Attach magnifier events + setTimeout(() => { + const images = scrollContainer.querySelectorAll('.image-slide img'); + images.forEach(img => { + if (isTouchDevice) { + img.addEventListener('touchstart', showMagnifier, { passive: false }); + img.addEventListener('touchmove', showMagnifier, { passive: false }); + img.addEventListener('touchend', hideMagnifier); + } else { + img.addEventListener('mousemove', showMagnifier); + img.addEventListener('mouseleave', hideMagnifier); + } + }); + }, 100); + + modal.style.display = 'block'; + document.body.style.overflow = 'hidden'; + } + + function showMagnifier(e) { + if (e.touches) e.preventDefault(); // prevent page scroll on mobile + + const img = e.target || e.currentTarget; + magnifier.style.display = 'block'; + + const rect = img.getBoundingClientRect(); + const clientX = e.touches ? e.touches[0].clientX : e.clientX; + const clientY = e.touches ? e.touches[0].clientY : e.clientY; + + const x = clientX - rect.left; + const y = clientY - rect.top; + + // Position the lens + magnifier.style.left = `${clientX - 90}px`; + magnifier.style.top = `${clientY - 90}px`; + + // 5x zoom + const zoom = 5; + const bgX = -(x * zoom - 90) + 'px'; + const bgY = -(y * zoom - 90) + 'px'; + + magnifier.style.backgroundImage = `url(${img.src})`; + magnifier.style.backgroundPosition = `${bgX} ${bgY}`; + magnifier.style.backgroundSize = `${img.width * zoom}px ${img.height * zoom}px`; + } + + function hideMagnifier() { + magnifier.style.display = 'none'; + } + + function closeModal() { + modal.style.display = 'none'; + document.body.style.overflow = ''; + hideMagnifier(); + } + + // Close events + closeBtn.addEventListener('click', closeModal); + + modal.addEventListener('click', function (e) { + if (e.target === modal) closeModal(); + }); + + document.addEventListener('keydown', function (e) { + if (e.key === 'Escape' && modal.style.display === 'block') { + closeModal(); + } + }); + + // Attach to shop cards + const cards = document.querySelectorAll('.shop-card'); + cards.forEach(card => { + const overlay = card.querySelector('.expand-overlay'); + if (overlay) { + overlay.addEventListener('click', (e) => { + e.stopPropagation(); + const productId = card.getAttribute('data-product-id'); + if (productId) openPreviewModal(productId); + }); + } + }); + + // ==================== TOKEN SELECTOR + CART (unchanged) ==================== + const select = document.getElementById('token-select'); + const paymentRows = document.querySelectorAll('.payment-summary .payment-row'); + if (paymentRows.length > 0) { + const firstRow = paymentRows[0]; + const labelSpan = firstRow.querySelector('span:nth-child(1)'); + const amountSpan = firstRow.querySelector('span:nth-child(2)'); + + function updateTokenDisplay() { + const selectedText = (select.options[select.selectedIndex]?.text || 'KIN').trim(); + labelSpan.textContent = `${selectedText} Qty`; + amountSpan.textContent = `250,000 ${selectedText}`; + } + + updateTokenDisplay(); + select.addEventListener('change', updateTokenDisplay); + } + + const cartButtons = document.querySelectorAll('.cart-btn'); + cartButtons.forEach(btn => { + btn.addEventListener('click', () => alert('Item added to cart!')); + }); + + const buyNow = document.querySelector('.buy-now'); + if (buyNow) { + buyNow.addEventListener('click', () => alert('Proceeding to checkout with selected token.')); + } + + console.log('%c✅ Modal with 5x magnifying lens (Desktop: hover • Mobile: tap & drag)', 'color:#a855f7; font-weight:bold'); + }); + diff --git a/sitemap.xml b/sitemap.xml index 6ab30d8..190d482 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -90,6 +90,11 @@ 2025-08-31T12:43:00-07:00 0.80 + + https://www.ofidcrypt.com/docs/main/la2 + 2026-05-08T19:44:00-07:00 + 0.80 + https://www.ofidcrypt.com/docs/main/pressrelease1 2025-09-17T21:33:00+00:00