Initial commit: AIFO official portal web.

Add static site, shared layout, and Node dev server with standard .gitignore.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-30 15:29:50 +08:00
commit 4d30803b60
1154 changed files with 184340 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
document.addEventListener('DOMContentLoaded', () => {
const images = document.querySelectorAll('.article_content img');
if (!images.length) return;
// 创建 lightbox
const lightbox = document.createElement('div');
lightbox.className = 'img-lightbox';
lightbox.innerHTML = '<img src="" alt="">';
document.body.appendChild(lightbox);
const lightboxImg = lightbox.querySelector('img');
let scale = 1;
const SCALE_STEP = 0.1;
const SCALE_MIN = 1;
const SCALE_MAX = 3;
function updateScale() {
lightboxImg.style.transform = `scale(${scale})`;
lightboxImg.style.cursor = scale > 1 ? 'zoom-out' : 'zoom-in';
}
images.forEach(img => {
img.addEventListener('click', () => {
lightboxImg.src = img.src;
scale = 1;
updateScale();
lightbox.classList.add('active');
});
});
// 鼠标滚轮缩放
lightbox.addEventListener('wheel', (e) => {
e.preventDefault();
if (!lightbox.classList.contains('active')) return;
if (e.deltaY < 0) {
scale = Math.min(scale + SCALE_STEP, SCALE_MAX);
} else {
scale = Math.max(scale - SCALE_STEP, SCALE_MIN);
}
updateScale();
}, { passive: false });
// 点击背景关闭
lightbox.addEventListener('click', (e) => {
if (e.target !== lightboxImg) {
lightbox.classList.remove('active');
lightboxImg.src = '';
scale = 1;
updateScale();
}
});
});