refactor(css): 重构about.css设计系统与响应式布局
- 统一变量命名,优化主题颜色与字体配置 - 精简选择器层级,提高样式性能与可维护性 - 改进玻璃拟态组件样式与交互反馈 - 优化移动端底部停靠导航与社交图标布局 - 调整技术标签云在不同设备上的展示方式 - 更新加载骨架屏动画与内容区域间距 - 引入更灵活的网格系统适配多屏幕尺寸 - 增强夜间模式下视觉效果与对比度可读性
This commit is contained in:
309
about.html
309
about.html
@@ -4,224 +4,259 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||||
<title>关于我 - Honesty</title>
|
<title>关于我 - Honesty</title>
|
||||||
|
<!-- 核心资源:使用 BootCDN 加速 -->
|
||||||
<link href="https://cdn.bootcdn.net/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet">
|
<link href="https://cdn.bootcdn.net/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet">
|
||||||
<link href="https://cdn.bootcdn.net/ajax/libs/remixicon/3.5.0/remixicon.min.css" rel="stylesheet">
|
<link href="https://cdn.bootcdn.net/ajax/libs/remixicon/3.5.0/remixicon.min.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<link rel="stylesheet" href="css/about.css">
|
<link rel="stylesheet" href="css/about.css">
|
||||||
|
<!-- Artalk 评论样式 -->
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.css">
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="ambient-canvas">
|
<!-- 动态背景层 -->
|
||||||
<div class="light-orb orb-1"></div>
|
<div class="aurora-canvas">
|
||||||
<div class="light-orb orb-2"></div>
|
<div class="glow-spot spot-1"></div>
|
||||||
<div class="light-orb orb-3"></div>
|
<div class="glow-spot spot-2"></div>
|
||||||
<div class="noise-overlay"></div>
|
<div class="glow-spot spot-3"></div>
|
||||||
|
<div class="noise-layer"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="app-wrapper">
|
<div class="app-root">
|
||||||
|
<!-- 导航栏:PC顶栏 / 移动端底栏 -->
|
||||||
<nav class="glass-nav">
|
<nav class="glass-nav">
|
||||||
<div class="nav-content">
|
<div class="nav-inner">
|
||||||
<a href="index.html" class="brand">
|
<a href="index.html" class="logo-brand">
|
||||||
<span class="brand-text">Honesty</span>
|
<span class="logo-text">Honesty</span>
|
||||||
<span class="brand-dot"></span>
|
<span class="logo-accent">.</span>
|
||||||
</a>
|
</a>
|
||||||
<div class="nav-actions">
|
|
||||||
<a href="index.html" class="nav-btn" title="Home">
|
<div class="nav-menu">
|
||||||
<i class="ri-home-4-line"></i>
|
<a href="index.html" class="nav-item">
|
||||||
<span data-i18n="nav.home">首页</span>
|
<i class="ri-home-smile-2-line"></i>
|
||||||
|
<span class="nav-label" data-i18n="nav.home">首页</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="javascript:void(0);" class="nav-btn active" title="About">
|
<a href="javascript:void(0);" class="nav-item active">
|
||||||
<i class="ri-user-smile-line"></i>
|
<i class="ri-user-3-line"></i>
|
||||||
<span data-i18n="nav.about">关于</span>
|
<span class="nav-label" data-i18n="nav.about">关于</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://blog.hehouhui.cn" class="nav-btn" title="Blog">
|
<a href="https://blog.hehouhui.cn" class="nav-item">
|
||||||
<i class="ri-article-line"></i>
|
<i class="ri-quill-pen-line"></i>
|
||||||
<span data-i18n="nav.blog">博客</span>
|
<span class="nav-label" data-i18n="nav.blog">博客</span>
|
||||||
</a>
|
</a>
|
||||||
<div class="divider"></div>
|
|
||||||
<button id="lang-toggle" class="icon-btn" title="Switch Language">
|
<div class="nav-divider"></div>
|
||||||
<span class="lang-text">EN/中</span>
|
|
||||||
|
<!-- 功能按钮 -->
|
||||||
|
<button id="lang-btn" class="action-btn" aria-label="Switch Language">
|
||||||
|
<i class="ri-translate-2"></i>
|
||||||
|
<span class="btn-text">CN/EN</span>
|
||||||
</button>
|
</button>
|
||||||
<button id="theme-toggle" class="icon-btn" title="Toggle Theme">
|
<button id="theme-btn" class="action-btn" aria-label="Toggle Theme">
|
||||||
<i class="ri-sun-line show-light"></i>
|
<i class="ri-sun-line icon-sun"></i>
|
||||||
<i class="ri-moon-line show-dark"></i>
|
<i class="ri-moon-line icon-moon"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main class="main-stage">
|
<main class="main-container">
|
||||||
|
|
||||||
<div class="bento-layout">
|
<!-- 第一部分:Bento Grid 核心展示 -->
|
||||||
|
<div class="bento-grid">
|
||||||
|
|
||||||
<div class="bento-box area-profile">
|
<!-- [1] 个人卡片 (Profile) -->
|
||||||
<div class="profile-inner">
|
<div class="bento-card area-profile">
|
||||||
<div class="avatar-wrapper">
|
<div class="profile-content">
|
||||||
<img src="https://blog-file.hehouhui.cn/202507171929231.jpeg" alt="Avatar" class="avatar-img">
|
<div class="avatar-ring">
|
||||||
<div class="status-badge" data-i18n="profile.status">Available</div>
|
<img src="https://blog-file.hehouhui.cn/202507171929231.jpeg" alt="Honesty" class="avatar-img">
|
||||||
|
<div class="status-dot" data-i18n="status.online">Online</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="profile-meta">
|
<div class="profile-info">
|
||||||
<h1 class="gradient-name" data-i18n="profile.name">Honesty</h1>
|
<h1 class="hero-name" data-i18n="profile.name">Honesty</h1>
|
||||||
<p class="role-text" data-i18n="profile.role">Java Backend + AI Developer</p>
|
<p class="hero-role" data-i18n="profile.role">Java Backend & AI Engineer</p>
|
||||||
<div class="meta-tags">
|
<div class="location-tag">
|
||||||
<span class="glass-pill"><i class="ri-map-pin-user-line"></i> <span data-i18n="profile.location">Shanghai</span></span>
|
<i class="ri-map-pin-user-fill"></i> <span data-i18n="profile.location">Shanghai, China</span>
|
||||||
<span class="glass-pill"><i class="ri-time-line"></i> 7+ Years</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="social-dock desktop-only">
|
<!-- 6个社交链接 (PC端显示) -->
|
||||||
|
<div class="social-dock desktop-social">
|
||||||
<a href="https://github.com/listener-He" target="_blank" class="s-icon"><i class="ri-github-fill"></i></a>
|
<a href="https://github.com/listener-He" target="_blank" class="s-icon"><i class="ri-github-fill"></i></a>
|
||||||
<a href="mailto:hehouhui@foxmail.com" class="s-icon"><i class="ri-mail-send-fill"></i></a>
|
<a href="mailto:hehouhui@foxmail.com" class="s-icon"><i class="ri-mail-send-fill"></i></a>
|
||||||
<a href="javascript:void(0);" onclick="toggleWechat()" class="s-icon"><i class="ri-wechat-fill"></i></a>
|
<a href="https://blog.hehouhui.cn" target="_blank" class="s-icon"><i class="ri-pages-line"></i></a>
|
||||||
<a href="https://www.zhihu.com/people/wen-xin-92-2-57" target="_blank" class="s-icon"><i class="ri-zhihu-line"></i></a>
|
<a href="https://www.zhihu.com/people/wen-xin-92-2-57" target="_blank" class="s-icon"><i class="ri-zhihu-line"></i></a>
|
||||||
|
<a href="javascript:void(0);" onclick="toggleWechat()" class="s-icon"><i class="ri-wechat-fill"></i></a>
|
||||||
|
<a href="https://juejin.cn/user/3659591622878503" target="_blank" class="s-icon"><i class="ri-code-box-line"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bento-box area-bio">
|
<!-- [2] 简介与格言 (Bio) -->
|
||||||
<div class="bio-content">
|
<div class="bento-card area-bio">
|
||||||
<h2 class="section-label" data-i18n="bio.title">About Me</h2>
|
<div class="card-label" data-i18n="bio.label">About Me</div>
|
||||||
<p class="bio-text" data-i18n="bio.desc">
|
<p class="bio-text" data-i18n="bio.text">
|
||||||
"我是一名充满热情的Java后端开发工程师,专注于AI技术的探索与应用..."
|
"我是一名充满热情的Java后端开发工程师,专注于AI技术的探索与应用。来自湖南,现在上海工作,享受在这座充满活力的城市中追求技术梦想。"
|
||||||
</p>
|
</p>
|
||||||
<div class="quote-block">
|
<div class="quote-box">
|
||||||
<i class="ri-double-quotes-l"></i>
|
<i class="ri-double-quotes-l"></i>
|
||||||
<p data-i18n="bio.quote">"我追求技术的深度理解而非广度堆砌..."</p>
|
<p data-i18n="bio.quote">"我追求技术的深度理解而非广度堆砌,每一项技术的学习都源于解决实际问题的内在驱动。"</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- [3] 数据统计 (Stats) -->
|
||||||
|
<div class="bento-card area-stats">
|
||||||
|
<div class="stat-item">
|
||||||
|
<span class="stat-val neon-font" id="coding-years">7+</span>
|
||||||
|
<span class="stat-key" data-i18n="stats.exp">Years</span>
|
||||||
|
</div>
|
||||||
|
<div class="stat-item">
|
||||||
|
<span class="stat-val neon-font" id="github-repos">--</span>
|
||||||
|
<span class="stat-key" data-i18n="stats.repos">Projects</span>
|
||||||
|
</div>
|
||||||
|
<div class="stat-item">
|
||||||
|
<span class="stat-val neon-font" id="github-followers">--</span>
|
||||||
|
<span class="stat-key" data-i18n="stats.followers">Followers</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- [4] MBTI 人格 (Personality) -->
|
||||||
|
<div class="bento-card area-mbti">
|
||||||
|
<div class="mbti-inner">
|
||||||
|
<div class="mbti-head">
|
||||||
|
<span class="mbti-code gradient-text">INFJ</span>
|
||||||
|
<span class="mbti-name" data-i18n="mbti.name">Advocate</span>
|
||||||
|
</div>
|
||||||
|
<p class="mbti-desc" data-i18n="mbti.desc">"理想主义与道德感,果断决绝的行动力。深度洞察与创意,关怀与同理心。"</p>
|
||||||
|
<div class="mbti-tags">
|
||||||
|
<span class="tag" data-i18n="mbti.tag1">Idealism</span>
|
||||||
|
<span class="tag" data-i18n="mbti.tag2">Insight</span>
|
||||||
|
<span class="tag" data-i18n="mbti.tag3">Empathy</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bento-box area-stats">
|
<!-- [5] 技术栈宇宙 (Tech Stack) -->
|
||||||
<div class="stat-grid">
|
<div class="bento-card area-tech">
|
||||||
<div class="stat-cell">
|
<div class="card-header">
|
||||||
<span class="stat-num neon-text" id="coding-years">7+</span>
|
<h3 data-i18n="tech.title">Tech Universe</h3>
|
||||||
<span class="stat-label" data-i18n="stats.exp">Years Exp</span>
|
|
||||||
</div>
|
|
||||||
<div class="stat-cell">
|
|
||||||
<span class="stat-num neon-text" id="github-repos">--</span>
|
|
||||||
<span class="stat-label" data-i18n="stats.repos">Repositories</span>
|
|
||||||
</div>
|
|
||||||
<div class="stat-cell">
|
|
||||||
<span class="stat-num neon-text" id="github-followers">--</span>
|
|
||||||
<span class="stat-label" data-i18n="stats.followers">Followers</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="bento-box area-mbti">
|
|
||||||
<div class="mbti-card">
|
|
||||||
<div class="mbti-visual">
|
|
||||||
<span class="mbti-big">INFJ</span>
|
|
||||||
<span class="mbti-sub" data-i18n="mbti.type">Advocate</span>
|
|
||||||
</div>
|
|
||||||
<div class="mbti-traits">
|
|
||||||
<p data-i18n="mbti.desc">"善于深度思考,注重细节,通过代码创造有意义的产品..."</p>
|
|
||||||
<div class="trait-tags">
|
|
||||||
<span class="trait" data-i18n="mbti.tag1">Idealism</span>
|
|
||||||
<span class="trait" data-i18n="mbti.tag2">Insight</span>
|
|
||||||
<span class="trait" data-i18n="mbti.tag3">Altruism</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 容器:PC端3D球,移动端横向滚动条 -->
|
||||||
|
<div id="tech-container" class="tech-wrapper">
|
||||||
|
<!-- JS 动态注入 -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bento-box area-tech">
|
<!-- [6] 兴趣爱好 (Interests) -->
|
||||||
<div class="box-header">
|
<div class="bento-card area-interests">
|
||||||
<h3 data-i18n="tech.title">Tech Stack</h3>
|
<div class="card-header">
|
||||||
<div class="header-line"></div>
|
|
||||||
</div>
|
|
||||||
<div id="tech-cloud-container" class="tech-viewport"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="bento-box area-interests">
|
|
||||||
<div class="box-header">
|
|
||||||
<h3 data-i18n="interest.title">Interests</h3>
|
<h3 data-i18n="interest.title">Interests</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-list">
|
<div class="interest-list">
|
||||||
<div class="tl-item">
|
<div class="interest-item">
|
||||||
<div class="tl-icon">🚴♂️</div>
|
<span class="i-emoji">🚴♂️</span>
|
||||||
<div class="tl-info">
|
<div class="i-text">
|
||||||
<h4 data-i18n="interest.cycling">Cycling</h4>
|
<strong data-i18n="interest.cycling">Cycling</strong>
|
||||||
<span data-i18n="interest.cycling_desc">Exploring the world on wheels</span>
|
<span data-i18n="interest.cycling_desc">Measuring the world</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tl-item">
|
<div class="interest-item">
|
||||||
<div class="tl-icon">📚</div>
|
<span class="i-emoji">📚</span>
|
||||||
<div class="tl-info">
|
<div class="i-text">
|
||||||
<h4 data-i18n="interest.reading">Reading</h4>
|
<strong data-i18n="interest.reading">Reading</strong>
|
||||||
<span data-i18n="interest.reading_desc">Recording thoughts via text</span>
|
<span data-i18n="interest.reading_desc">Thinking tracks</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tl-item">
|
<div class="interest-item">
|
||||||
<div class="tl-icon">💡</div>
|
<span class="i-emoji">🔍</span>
|
||||||
<div class="tl-info">
|
<div class="i-text">
|
||||||
<h4 data-i18n="interest.opensource">Open Source</h4>
|
<strong data-i18n="interest.opensource">Open Source</strong>
|
||||||
<span data-i18n="interest.opensource_desc">Connecting the world with code</span>
|
<span data-i18n="interest.opensource_desc">Sharing power</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="interest-item">
|
||||||
|
<span class="i-emoji">💡</span>
|
||||||
|
<div class="i-text">
|
||||||
|
<strong data-i18n="interest.learning">Learning</strong>
|
||||||
|
<span data-i18n="interest.learning_desc">Always curious</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bento-box area-social mobile-only-box">
|
<!-- 移动端显示的社交栏 (6个链接) -->
|
||||||
<a href="https://github.com/listener-He" target="_blank" class="s-btn"><i class="ri-github-fill"></i></a>
|
<div class="bento-card area-social-mobile mobile-social">
|
||||||
<a href="mailto:hehouhui@foxmail.com" class="s-btn"><i class="ri-mail-send-fill"></i></a>
|
<a href="https://github.com/listener-He" class="ms-btn"><i class="ri-github-fill"></i></a>
|
||||||
<a href="javascript:void(0);" onclick="toggleWechat()" class="s-btn"><i class="ri-wechat-fill"></i></a>
|
<a href="mailto:hehouhui@foxmail.com" class="ms-btn"><i class="ri-mail-send-fill"></i></a>
|
||||||
|
<a href="https://blog.hehouhui.cn" class="ms-btn"><i class="ri-pages-line"></i></a>
|
||||||
|
<a href="https://www.zhihu.com/people/wen-xin-92-2-57" class="ms-btn"><i class="ri-zhihu-line"></i></a>
|
||||||
|
<a href="javascript:void(0);" onclick="toggleWechat()" class="ms-btn"><i class="ri-wechat-fill"></i></a>
|
||||||
|
<a href="https://juejin.cn/user/3659591622878503" class="ms-btn"><i class="ri-code-box-line"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content-columns">
|
<!-- 第二部分:开源与博客 (瀑布流/列表) -->
|
||||||
<section class="col-section">
|
<div class="content-section">
|
||||||
<div class="col-head">
|
<!-- 左侧:GitHub -->
|
||||||
|
<div class="content-col">
|
||||||
|
<div class="col-header">
|
||||||
<h3 class="glow-title"><i class="ri-github-line"></i> <span data-i18n="github.title">Open Source</span></h3>
|
<h3 class="glow-title"><i class="ri-github-line"></i> <span data-i18n="github.title">Open Source</span></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="glass-panel">
|
<div class="glass-panel">
|
||||||
|
<!-- 贡献图 placeholder -->
|
||||||
<div id="github-commits" class="commits-chart"></div>
|
<div id="github-commits" class="commits-chart"></div>
|
||||||
<div class="projects-list" id="projects-container">
|
<div id="projects-container" class="projects-list">
|
||||||
<div class="skeleton-loader"></div>
|
<!-- Loading State -->
|
||||||
<div class="skeleton-loader"></div>
|
<div class="skeleton-card"></div>
|
||||||
|
<div class="skeleton-card"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="col-section">
|
<!-- 右侧:Blog -->
|
||||||
<div class="col-head">
|
<div class="content-col">
|
||||||
|
<div class="col-header">
|
||||||
<h3 class="glow-title"><i class="ri-article-line"></i> <span data-i18n="blog.title">Latest Posts</span></h3>
|
<h3 class="glow-title"><i class="ri-article-line"></i> <span data-i18n="blog.title">Latest Posts</span></h3>
|
||||||
<a href="https://blog.hehouhui.cn" class="more-link" data-i18n="blog.more">View All →</a>
|
<a href="https://blog.hehouhui.cn" class="more-link" data-i18n="blog.more">View All →</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="glass-list" id="blog-container">
|
<div id="blog-container" class="blog-list glass-panel">
|
||||||
<div class="skeleton-loader"></div>
|
<!-- Loading State -->
|
||||||
<div class="skeleton-loader"></div>
|
<div class="skeleton-card"></div>
|
||||||
|
<div class="skeleton-card"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="comments-area">
|
<!-- 第三部分:评论 -->
|
||||||
<div class="col-head">
|
<div class="comments-wrapper">
|
||||||
<h3 class="glow-title"><i class="ri-message-3-line"></i> <span data-i18n="comment.title">Message Board</span></h3>
|
<div class="col-header">
|
||||||
|
<h3 class="glow-title"><i class="ri-discuss-line"></i> <span data-i18n="comment.title">Message Board</span></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="glass-panel comment-box">
|
<div class="glass-panel comment-box">
|
||||||
<div id="artalk-container"></div>
|
<div id="artalk-container"></div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
<!-- 微信弹窗 -->
|
||||||
|
<div id="wechat-modal" class="modal-overlay">
|
||||||
|
<div class="modal-glass">
|
||||||
|
<button class="modal-close" onclick="toggleWechat()"><i class="ri-close-line"></i></button>
|
||||||
|
<h3 data-i18n="modal.wechat">Official Account</h3>
|
||||||
|
<div class="qr-box">
|
||||||
|
<img src="https://blog-file.hehouhui.cn/wechat/mp-honesy.jpg" alt="WeChat QR" onerror="this.style.display='none';this.nextElementSibling.style.display='block'">
|
||||||
|
<div class="qr-fallback">QR Load Failed</div>
|
||||||
|
</div>
|
||||||
|
<p data-i18n="modal.desc">Scan to follow Tech Share</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<p>© 2024 Honesty. All rights reserved. <a href="https://beian.miit.gov.cn/">湘ICP备20014902号</a></p>
|
<p>© 2024 Honesty. All rights reserved. <a href="https://beian.miit.gov.cn/" target="_blank">湘ICP备20014902号</a></p>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="wechat-modal" class="modal-backdrop">
|
<!-- 脚本:BootCDN jQuery -->
|
||||||
<div class="modal-card">
|
|
||||||
<button class="close-modal" onclick="toggleWechat()"><i class="ri-close-line"></i></button>
|
|
||||||
<h3 data-i18n="modal.wechat_title">Official Account</h3>
|
|
||||||
<div class="qr-wrapper">
|
|
||||||
<img src="https://blog-file.hehouhui.cn/wechat/mp-honesy.jpg" alt="WeChat QR">
|
|
||||||
</div>
|
|
||||||
<p data-i18n="modal.wechat_desc">Scan to follow for tech insights</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||||
<script src="js/config.js"></script>
|
<script src="js/config.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.js"></script>
|
||||||
|
|||||||
462
css/about.css
462
css/about.css
@@ -1,167 +1,152 @@
|
|||||||
/* about.css - Aurora Nexus Design System */
|
/* about.css - Aurora Nexus v2.0 */
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
1. Design Tokens & Typography
|
1. Design Tokens (Variables)
|
||||||
========================================= */
|
========================================= */
|
||||||
:root {
|
:root {
|
||||||
/* 字体栈:兼容中英混排,大陆访问快 */
|
/* Fonts: System preferred for speed & legibility */
|
||||||
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
|
--font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
|
||||||
--font-serif: "Georgia", "Times New Roman", "Songti SC", "SimSun", serif;
|
--font-serif: "Georgia", "Times New Roman", "Songti SC", serif;
|
||||||
--font-mono: "JetBrains Mono", "Fira Code", Consolas, monospace;
|
--font-mono: "JetBrains Mono", "Fira Code", Consolas, monospace;
|
||||||
|
|
||||||
/* DAY THEME: 晨曦 (Morning Light) */
|
/* Day Theme (晨曦) */
|
||||||
--bg-canvas: #f4f6f8;
|
--bg-base: #f2f4f7;
|
||||||
--bg-orb-1: rgba(168, 237, 234, 0.6);
|
--bg-grad-1: #a1c4fd;
|
||||||
--bg-orb-2: rgba(254, 214, 227, 0.6);
|
--bg-grad-2: #c2e9fb;
|
||||||
|
|
||||||
--glass-surface: rgba(255, 255, 255, 0.7);
|
--glass-bg: rgba(255, 255, 255, 0.65);
|
||||||
--glass-border: 1px solid rgba(255, 255, 255, 0.9);
|
--glass-border: 1px solid rgba(255, 255, 255, 0.9);
|
||||||
--glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
|
--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
|
||||||
--glass-blur: 20px;
|
--glass-blur: 20px;
|
||||||
|
|
||||||
--text-primary: #1a1a1a;
|
--text-primary: #2d3436;
|
||||||
--text-secondary: #555555;
|
--text-secondary: #636e72;
|
||||||
--text-tertiary: #999999;
|
--text-tertiary: #b2bec3;
|
||||||
|
|
||||||
--accent-color: #6c5ce7;
|
--accent: #6c5ce7;
|
||||||
--accent-glow: rgba(108, 92, 231, 0.2);
|
--accent-glow: rgba(108, 92, 231, 0.2);
|
||||||
|
|
||||||
--nav-bg: rgba(255, 255, 255, 0.85);
|
--dock-bg: rgba(255, 255, 255, 0.85);
|
||||||
--radius-lg: 24px;
|
--radius: 24px;
|
||||||
--radius-md: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-theme="night"] {
|
[data-theme="night"] {
|
||||||
/* NIGHT THEME: 赛博 (Cyber Neon) */
|
/* Night Theme (霓虹) */
|
||||||
--bg-canvas: #050505;
|
--bg-base: #0f0f12;
|
||||||
--bg-orb-1: rgba(76, 29, 149, 0.4);
|
--bg-grad-1: #2d3436;
|
||||||
--bg-orb-2: rgba(13, 148, 136, 0.3);
|
--bg-grad-2: #000000;
|
||||||
|
|
||||||
--glass-surface: rgba(20, 20, 25, 0.7);
|
--glass-bg: rgba(30, 30, 35, 0.65);
|
||||||
--glass-border: 1px solid rgba(255, 255, 255, 0.08);
|
--glass-border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
--glass-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
|
--glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
|
||||||
|
|
||||||
--text-primary: #ffffff;
|
--text-primary: #dfe6e9;
|
||||||
--text-secondary: #a0a0a0;
|
--text-secondary: #b2bec3;
|
||||||
--text-tertiary: #666666;
|
--text-tertiary: #636e72;
|
||||||
|
|
||||||
--accent-color: #00d2ff;
|
--accent: #00cec9;
|
||||||
--accent-glow: rgba(0, 210, 255, 0.4);
|
--accent-glow: rgba(0, 206, 201, 0.4);
|
||||||
|
|
||||||
--nav-bg: rgba(20, 20, 20, 0.85);
|
--dock-bg: rgba(30, 30, 35, 0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================================
|
/* Global Reset */
|
||||||
2. Global Reset
|
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }
|
||||||
========================================= */
|
html { font-size: 16px; }
|
||||||
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
|
|
||||||
body {
|
body {
|
||||||
font-family: var(--font-sans);
|
font-family: var(--font-main);
|
||||||
background-color: var(--bg-canvas);
|
background: var(--bg-base);
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
min-height: 100vh;
|
|
||||||
transition: background-color 0.4s ease, color 0.3s ease;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
transition: background 0.5s, color 0.3s;
|
||||||
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
a { text-decoration: none; color: inherit; transition: color 0.2s; }
|
|
||||||
button { border: none; background: none; cursor: pointer; font-family: inherit; }
|
|
||||||
|
|
||||||
/* =========================================
|
/* Ambient Background */
|
||||||
3. Ambient Background
|
.aurora-canvas {
|
||||||
========================================= */
|
position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
|
||||||
.ambient-canvas {
|
|
||||||
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none;
|
|
||||||
}
|
}
|
||||||
.light-orb {
|
.glow-spot {
|
||||||
position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6;
|
position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
|
||||||
animation: float 25s infinite alternate ease-in-out;
|
animation: float 20s infinite alternate;
|
||||||
}
|
}
|
||||||
.orb-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: var(--bg-orb-1); }
|
.spot-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--bg-grad-1); }
|
||||||
.orb-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: var(--bg-orb-2); animation-delay: -5s; }
|
.spot-2 { bottom: -10%; right: -10%; width: 60vw; height: 60vw; background: var(--bg-grad-2); animation-delay: -5s; }
|
||||||
.noise-overlay {
|
.noise-layer {
|
||||||
position: absolute; inset: 0; opacity: 0.03;
|
position: absolute; inset: 0; opacity: 0.03;
|
||||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(40px, 60px); } }
|
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(30px, 50px); } }
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
4. Glass Components (Universal)
|
2. Universal Glass Components
|
||||||
========================================= */
|
========================================= */
|
||||||
.glass-nav, .bento-box, .glass-panel, .glass-list, .modal-card {
|
.glass-nav, .bento-card, .glass-panel, .modal-glass {
|
||||||
background: var(--glass-surface);
|
background: var(--glass-bg);
|
||||||
backdrop-filter: blur(var(--glass-blur));
|
backdrop-filter: blur(var(--glass-blur));
|
||||||
-webkit-backdrop-filter: blur(var(--glass-blur));
|
-webkit-backdrop-filter: blur(var(--glass-blur));
|
||||||
border: var(--glass-border);
|
border: var(--glass-border);
|
||||||
box-shadow: var(--glass-shadow);
|
box-shadow: var(--glass-shadow);
|
||||||
border-radius: var(--radius-lg);
|
border-radius: var(--radius);
|
||||||
transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
|
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bento-box:hover, .glass-panel:hover {
|
.bento-card:hover, .glass-panel:hover {
|
||||||
transform: translateY(-4px);
|
transform: translateY(-4px);
|
||||||
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
|
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
|
||||||
border-color: var(--accent-color);
|
border-color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 渐变与发光文字 */
|
/* Typography Effects */
|
||||||
.gradient-name {
|
.gradient-text {
|
||||||
background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
|
background: linear-gradient(135deg, var(--text-primary), var(--accent));
|
||||||
-webkit-background-clip: text; background-clip: text; color: transparent;
|
-webkit-background-clip: text; background-clip: text; color: transparent;
|
||||||
font-weight: 800;
|
|
||||||
}
|
|
||||||
[data-theme="night"] .gradient-name {
|
|
||||||
text-shadow: 0 0 25px var(--accent-glow);
|
|
||||||
}
|
|
||||||
.neon-text {
|
|
||||||
font-family: var(--font-mono); color: var(--text-primary); font-weight: 700;
|
|
||||||
}
|
|
||||||
[data-theme="night"] .neon-text {
|
|
||||||
color: #fff; text-shadow: 0 0 10px var(--accent-color);
|
|
||||||
}
|
|
||||||
.glow-title {
|
|
||||||
display: flex; align-items: center; gap: 8px; font-size: 1.4rem; color: var(--text-primary);
|
|
||||||
}
|
}
|
||||||
|
[data-theme="night"] .gradient-text { text-shadow: 0 0 20px var(--accent-glow); }
|
||||||
|
|
||||||
|
.neon-font { font-family: var(--font-mono); font-weight: 700; color: var(--text-primary); }
|
||||||
|
[data-theme="night"] .neon-font { color: #fff; text-shadow: 0 0 10px var(--accent); }
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
5. Navigation
|
3. Navigation
|
||||||
========================================= */
|
========================================= */
|
||||||
.glass-nav {
|
/* Desktop Nav */
|
||||||
position: fixed; z-index: 1000;
|
|
||||||
}
|
|
||||||
/* PC Navigation */
|
|
||||||
@media (min-width: 769px) {
|
@media (min-width: 769px) {
|
||||||
.glass-nav {
|
.glass-nav {
|
||||||
top: 20px; left: 50%; transform: translateX(-50%);
|
position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
|
||||||
width: 90%; max-width: 1280px; height: 70px; padding: 0 30px;
|
width: 90%; max-width: 1200px; height: 68px; padding: 0 30px; z-index: 1000;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
|
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
|
||||||
.brand { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; }
|
|
||||||
.brand-dot { width: 8px; height: 8px; background: var(--accent-color); border-radius: 50%; margin-left: 6px; }
|
|
||||||
|
|
||||||
.nav-actions { display: flex; align-items: center; gap: 20px; }
|
.logo-brand { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); text-decoration: none; }
|
||||||
.nav-btn { display: flex; align-items: center; gap: 6px; font-weight: 500; color: var(--text-secondary); transition: all 0.3s; }
|
.logo-accent { color: var(--accent); font-size: 2rem; line-height: 0; }
|
||||||
.nav-btn:hover, .nav-btn.active { color: var(--text-primary); }
|
|
||||||
.nav-btn i { font-size: 1.1rem; }
|
|
||||||
|
|
||||||
.divider { height: 20px; width: 1px; background: var(--text-tertiary); opacity: 0.3; }
|
.nav-menu { display: flex; align-items: center; gap: 24px; }
|
||||||
.icon-btn { font-size: 1.2rem; color: var(--text-primary); padding: 5px; border-radius: 50%; transition: background 0.3s; }
|
.nav-item {
|
||||||
.icon-btn:hover { background: rgba(128,128,128,0.1); }
|
display: flex; align-items: center; gap: 6px; color: var(--text-secondary);
|
||||||
.lang-text { font-size: 0.8rem; font-weight: 700; font-family: var(--font-mono); }
|
text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s;
|
||||||
|
}
|
||||||
|
.nav-item:hover, .nav-item.active { color: var(--text-primary); }
|
||||||
|
.nav-item i { font-size: 1.2rem; }
|
||||||
|
|
||||||
[data-theme="day"] .show-light { display: none; }
|
.nav-divider { width: 1px; height: 20px; background: var(--text-tertiary); opacity: 0.3; }
|
||||||
[data-theme="night"] .show-dark { display: none; }
|
.action-btn { display: flex; align-items: center; gap: 4px; color: var(--text-primary); font-size: 0.9rem; opacity: 0.8; transition: opacity 0.3s; }
|
||||||
|
.action-btn:hover { opacity: 1; }
|
||||||
|
[data-theme="day"] .icon-sun { display: none; }
|
||||||
|
[data-theme="night"] .icon-moon { display: none; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
6. BENTO GRID LAYOUT (The Core)
|
4. Layout: Bento Grid (Responsive)
|
||||||
========================================= */
|
========================================= */
|
||||||
.main-stage { max-width: 1280px; margin: 120px auto 60px; padding: 0 40px; }
|
.main-container { max-width: 1200px; margin: 120px auto 60px; padding: 0 30px; }
|
||||||
.bento-layout {
|
|
||||||
|
.bento-grid {
|
||||||
display: grid; gap: 24px;
|
display: grid; gap: 24px;
|
||||||
/* PC: 3 Columns, 2 Rows */
|
/* PC: 3 Col, 2 Row Main */
|
||||||
grid-template-columns: 320px 1fr 280px;
|
grid-template-columns: 320px 1fr 260px;
|
||||||
grid-template-rows: 240px 220px auto;
|
grid-template-rows: 240px 220px auto;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"profile bio stats"
|
"profile bio stats"
|
||||||
@@ -169,119 +154,130 @@ button { border: none; background: none; cursor: pointer; font-family: inherit;
|
|||||||
"tech tech interests";
|
"tech tech interests";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 区域分配 */
|
/* --- Areas --- */
|
||||||
.area-profile { grid-area: profile; }
|
.area-profile { grid-area: profile; }
|
||||||
.area-bio { grid-area: bio; }
|
.area-bio { grid-area: bio; }
|
||||||
.area-stats { grid-area: stats; }
|
.area-stats { grid-area: stats; }
|
||||||
.area-mbti { grid-area: mbti; }
|
.area-mbti { grid-area: mbti; }
|
||||||
.area-tech { grid-area: tech; position: relative; overflow: hidden; }
|
.area-tech { grid-area: tech; }
|
||||||
.area-interests { grid-area: interests; }
|
.area-interests { grid-area: interests; }
|
||||||
.mobile-only-box { display: none; }
|
.mobile-social { display: none; }
|
||||||
|
|
||||||
/* --- Profile Card --- */
|
/* --- Profile Card --- */
|
||||||
.area-profile { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; }
|
.area-profile { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; text-align: center; }
|
||||||
.avatar-wrapper { position: relative; width: 120px; height: 120px; margin: 0 auto 20px; }
|
.avatar-ring {
|
||||||
.avatar-img { width: 100%; height: 100%; border-radius: 50%; border: 4px solid var(--bg-canvas); object-fit: cover; }
|
position: relative; width: 120px; height: 120px; border-radius: 50%;
|
||||||
.status-badge {
|
padding: 4px; border: 1px solid var(--text-tertiary);
|
||||||
|
}
|
||||||
|
.avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
|
||||||
|
.status-dot {
|
||||||
position: absolute; bottom: 0; right: 0; background: #2ecc71; color: #fff;
|
position: absolute; bottom: 0; right: 0; background: #2ecc71; color: #fff;
|
||||||
font-size: 0.7rem; padding: 2px 8px; border-radius: 10px; border: 2px solid var(--bg-canvas);
|
font-size: 0.65rem; padding: 2px 8px; border-radius: 10px; border: 2px solid var(--bg-base);
|
||||||
}
|
}
|
||||||
.profile-meta { text-align: center; }
|
.hero-name { font-size: 2rem; font-family: var(--font-serif); margin: 15px 0 5px; font-weight: 800; color: var(--text-primary); }
|
||||||
.gradient-name { font-size: 2rem; margin-bottom: 8px; font-family: var(--font-serif); }
|
.hero-role { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 10px; }
|
||||||
.role-text { color: var(--text-secondary); margin-bottom: 15px; font-size: 0.9rem; }
|
.location-tag { font-size: 0.85rem; color: var(--text-tertiary); display: flex; align-items: center; justify-content: center; gap: 4px; }
|
||||||
.meta-tags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
|
|
||||||
.glass-pill {
|
.social-dock { display: flex; gap: 12px; margin-top: 20px; }
|
||||||
background: rgba(128,128,128,0.1); padding: 4px 10px; border-radius: 8px;
|
.s-icon {
|
||||||
font-size: 0.8rem; color: var(--text-secondary); display: flex; align-items: center; gap: 4px;
|
width: 36px; height: 36px; border-radius: 50%; background: rgba(128,128,128,0.1);
|
||||||
|
display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
|
||||||
|
transition: all 0.3s; text-decoration: none;
|
||||||
}
|
}
|
||||||
.social-dock { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
|
.s-icon:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
|
||||||
.s-icon { font-size: 1.4rem; color: var(--text-secondary); transition: transform 0.2s, color 0.2s; }
|
|
||||||
.s-icon:hover { color: var(--accent-color); transform: scale(1.1); }
|
|
||||||
|
|
||||||
/* --- Bio Card --- */
|
/* --- Bio Card --- */
|
||||||
.area-bio { padding: 35px; display: flex; flex-direction: column; justify-content: center; position: relative; }
|
.area-bio { padding: 35px; display: flex; flex-direction: column; justify-content: center; position: relative; }
|
||||||
.section-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-tertiary); margin-bottom: 15px; }
|
.card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-tertiary); margin-bottom: 15px; }
|
||||||
.bio-text { font-size: 1rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 20px; }
|
.bio-text { font-size: 1rem; color: var(--text-primary); margin-bottom: 20px; text-align: justify; }
|
||||||
.quote-block { border-left: 3px solid var(--accent-color); padding-left: 15px; color: var(--text-secondary); font-style: italic; font-size: 0.95rem; }
|
.quote-box { border-left: 3px solid var(--accent); padding-left: 15px; font-style: italic; color: var(--text-secondary); font-size: 0.9rem; }
|
||||||
|
|
||||||
/* --- Stats Card --- */
|
/* --- Stats --- */
|
||||||
.area-stats { display: flex; flex-direction: column; justify-content: center; padding: 25px; }
|
.area-stats { display: flex; flex-direction: column; justify-content: space-around; padding: 20px 30px; }
|
||||||
.stat-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
|
.stat-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(128,128,128,0.1); padding: 10px 0; }
|
||||||
.stat-cell { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(128,128,128,0.1); padding-bottom: 10px; }
|
.stat-item:last-child { border-bottom: none; }
|
||||||
.stat-cell:last-child { border-bottom: none; }
|
.stat-val { font-size: 1.5rem; }
|
||||||
.stat-num { font-size: 1.4rem; }
|
.stat-key { font-size: 0.8rem; color: var(--text-tertiary); text-transform: uppercase; }
|
||||||
.stat-label { font-size: 0.8rem; color: var(--text-tertiary); }
|
|
||||||
|
|
||||||
/* --- MBTI --- */
|
/* --- MBTI --- */
|
||||||
.area-mbti { padding: 25px; display: flex; align-items: center; }
|
.area-mbti { padding: 30px; display: flex; align-items: center; }
|
||||||
.mbti-card { width: 100%; }
|
.mbti-inner { width: 100%; }
|
||||||
.mbti-visual { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
|
.mbti-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
|
||||||
.mbti-big { font-size: 2.5rem; font-weight: 900; color: var(--accent-color); font-family: var(--font-mono); opacity: 0.8; }
|
.mbti-code { font-size: 2.2rem; font-weight: 900; font-family: var(--font-mono); }
|
||||||
.mbti-sub { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
|
.mbti-name { font-weight: 600; color: var(--text-secondary); }
|
||||||
.mbti-traits { font-size: 0.9rem; color: var(--text-secondary); }
|
.mbti-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 15px; line-height: 1.5; }
|
||||||
.trait-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
|
.mbti-tags { display: flex; gap: 8px; flex-wrap: wrap; }
|
||||||
.trait { font-size: 0.75rem; background: rgba(var(--accent-color), 0.1); padding: 2px 8px; border-radius: 4px; }
|
.tag { font-size: 0.75rem; background: rgba(128,128,128,0.1); padding: 4px 10px; border-radius: 6px; color: var(--text-secondary); }
|
||||||
|
|
||||||
/* --- Tech Stack --- */
|
/* --- Tech Stack (PC) --- */
|
||||||
.area-tech { display: flex; flex-direction: column; }
|
.area-tech { display: flex; flex-direction: column; position: relative; overflow: hidden; }
|
||||||
.box-header { padding: 20px; display: flex; align-items: center; border-bottom: 1px solid rgba(128,128,128,0.1); }
|
.card-header { padding: 20px 25px; border-bottom: 1px solid rgba(128,128,128,0.1); }
|
||||||
.box-header h3 { font-size: 1.1rem; color: var(--text-primary); }
|
.card-header h3 { font-size: 1.1rem; color: var(--text-primary); margin: 0; }
|
||||||
.tech-viewport { flex: 1; position: relative; width: 100%; min-height: 300px; }
|
/* PC 3D Container */
|
||||||
.tech-tag {
|
.tech-wrapper { flex: 1; position: relative; min-height: 250px; width: 100%; }
|
||||||
position: absolute; padding: 6px 12px; border-radius: 6px;
|
.tech-tag-3d {
|
||||||
font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
|
position: absolute; font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
|
||||||
color: var(--text-primary); background: rgba(255,255,255,0.4);
|
padding: 6px 12px; background: rgba(255,255,255,0.3); border-radius: 6px;
|
||||||
border: 1px solid rgba(255,255,255,0.3); box-shadow: 0 4px 10px rgba(0,0,0,0.05);
|
border: 1px solid rgba(255,255,255,0.4); user-select: none; white-space: nowrap;
|
||||||
white-space: nowrap; user-select: none;
|
backface-visibility: hidden;
|
||||||
}
|
}
|
||||||
[data-theme="night"] .tech-tag { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); color: #fff; }
|
[data-theme="night"] .tech-tag-3d { background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); color: #fff; }
|
||||||
|
|
||||||
/* --- Interests --- */
|
/* --- Interests --- */
|
||||||
.area-interests { padding: 20px; }
|
.area-interests { padding: 20px; }
|
||||||
.timeline-list { display: flex; flex-direction: column; justify-content: space-around; height: 100%; padding-top: 10px; }
|
.interest-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; height: 100%; align-content: center; }
|
||||||
.tl-item { display: flex; align-items: center; gap: 15px; }
|
.interest-item { background: rgba(128,128,128,0.05); padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 12px; transition: background 0.3s; }
|
||||||
.tl-icon { font-size: 1.5rem; width: 40px; text-align: center; }
|
.interest-item:hover { background: rgba(128,128,128,0.1); }
|
||||||
.tl-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
|
.i-emoji { font-size: 1.5rem; }
|
||||||
.tl-info span { font-size: 0.8rem; color: var(--text-tertiary); }
|
.i-text { display: flex; flex-direction: column; }
|
||||||
|
.i-text strong { font-size: 0.9rem; color: var(--text-primary); }
|
||||||
|
.i-text span { font-size: 0.75rem; color: var(--text-tertiary); }
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
7. Content Columns (Repo & Blog)
|
5. Content Sections (Blog/Github)
|
||||||
========================================= */
|
========================================= */
|
||||||
.content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
|
.content-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
|
||||||
.col-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
|
.col-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
|
||||||
.more-link { font-size: 0.9rem; color: var(--accent-color); font-weight: 600; }
|
.glow-title { font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }
|
||||||
|
.more-link { font-size: 0.9rem; color: var(--accent); font-weight: 600; }
|
||||||
|
|
||||||
.glass-list { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 200px; }
|
.glass-panel { padding: 20px; min-height: 300px; }
|
||||||
.blog-card {
|
|
||||||
padding: 15px; background: rgba(128,128,128,0.05); border-radius: var(--radius-md);
|
|
||||||
cursor: pointer; transition: all 0.2s; border-left: 3px solid transparent;
|
|
||||||
}
|
|
||||||
.blog-card:hover { background: rgba(128,128,128,0.1); border-left-color: var(--accent-color); }
|
|
||||||
.b-title { font-weight: 600; margin-bottom: 5px; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
|
|
||||||
.b-meta { font-size: 0.8rem; color: var(--text-secondary); display: flex; justify-content: space-between; }
|
|
||||||
|
|
||||||
.projects-list { padding: 10px; max-height: 400px; overflow-y: auto; }
|
/* Github Lists */
|
||||||
|
.projects-list { margin-top: 15px; display: flex; flex-direction: column; gap: 10px; max-height: 400px; overflow-y: auto; }
|
||||||
.repo-card {
|
.repo-card {
|
||||||
margin-bottom: 12px; padding: 15px; background: rgba(128,128,128,0.05);
|
padding: 15px; background: rgba(128,128,128,0.05); border-radius: 12px; cursor: pointer;
|
||||||
border-radius: var(--radius-md); border: 1px solid transparent; cursor: pointer;
|
border: 1px solid transparent; transition: border 0.3s;
|
||||||
}
|
}
|
||||||
.repo-card:hover { border-color: var(--accent-color); }
|
.repo-card:hover { border-color: var(--accent); }
|
||||||
.repo-top { display: flex; justify-content: space-between; font-weight: 700; color: var(--text-primary); }
|
.repo-head { display: flex; justify-content: space-between; font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
|
||||||
.repo-desc { font-size: 0.85rem; color: var(--text-secondary); margin-top: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
|
.repo-desc { font-size: 0.8rem; color: var(--text-secondary); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
|
||||||
|
|
||||||
/* Loading Animation */
|
/* Blog List */
|
||||||
.skeleton-loader { height: 60px; background: rgba(128,128,128,0.1); border-radius: 8px; margin-bottom: 10px; animation: pulse 1.5s infinite; }
|
.blog-list { display: flex; flex-direction: column; gap: 12px; }
|
||||||
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
|
.blog-item {
|
||||||
|
padding: 12px 16px; border-radius: 12px; background: rgba(128,128,128,0.03);
|
||||||
|
display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.3s;
|
||||||
|
}
|
||||||
|
.blog-item:hover { background: rgba(128,128,128,0.08); }
|
||||||
|
.b-info { flex: 1; min-width: 0; margin-right: 15px; }
|
||||||
|
.b-title { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||||
|
.b-date { font-size: 0.75rem; color: var(--text-tertiary); }
|
||||||
|
.b-cat { font-size: 0.75rem; color: var(--accent); background: rgba(128,128,128,0.1); padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
|
||||||
|
|
||||||
|
/* Loading Skeleton */
|
||||||
|
.skeleton-card { height: 60px; background: rgba(128,128,128,0.1); border-radius: 10px; animation: pulse 1.5s infinite; }
|
||||||
|
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }
|
||||||
|
|
||||||
/* Comments */
|
/* Comments */
|
||||||
.comments-area { margin: 40px 0; }
|
.comments-wrapper { margin: 40px 0 80px; }
|
||||||
.comment-box { padding: 30px; }
|
.comment-box { padding: 30px; }
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
8. Tablet Layout (Adaptive)
|
6. Tablet Adaptive (768px - 1024px)
|
||||||
========================================= */
|
========================================= */
|
||||||
@media (min-width: 769px) and (max-width: 1024px) {
|
@media (min-width: 769px) and (max-width: 1024px) {
|
||||||
.bento-layout {
|
.bento-grid {
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"profile stats"
|
"profile stats"
|
||||||
@@ -291,73 +287,83 @@ button { border: none; background: none; cursor: pointer; font-family: inherit;
|
|||||||
"interests interests";
|
"interests interests";
|
||||||
grid-template-rows: auto;
|
grid-template-rows: auto;
|
||||||
}
|
}
|
||||||
.area-profile { flex-direction: row; align-items: center; gap: 20px; }
|
.area-profile { flex-direction: row; gap: 20px; }
|
||||||
.avatar-wrapper { margin: 0; width: 100px; height: 100px; }
|
.content-section { grid-template-columns: 1fr; }
|
||||||
.content-columns { grid-template-columns: 1fr; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
9. Mobile Layout (App Stream)
|
7. Mobile Layout (< 768px)
|
||||||
========================================= */
|
========================================= */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.main-stage { padding: 0 16px; margin: 20px auto 100px; }
|
.main-container { margin: 20px auto 100px; padding: 0 16px; }
|
||||||
|
|
||||||
/* Nav -> Bottom Dock */
|
/* Bottom Dock */
|
||||||
.glass-nav {
|
.glass-nav {
|
||||||
top: auto; bottom: 0; left: 0; transform: none; width: 100%; border-radius: 0;
|
position: fixed; top: auto; bottom: 0; left: 0; width: 100%; height: auto;
|
||||||
height: 60px; padding: 0; border-top: 1px solid rgba(128,128,128,0.1);
|
border-radius: 0; background: var(--dock-bg); border-top: 1px solid rgba(128,128,128,0.1);
|
||||||
background: var(--nav-bg);
|
padding-bottom: env(safe-area-inset-bottom);
|
||||||
}
|
}
|
||||||
.brand, .divider, .lang-text { display: none; }
|
.logo-brand, .nav-divider { display: none; }
|
||||||
.nav-content { justify-content: center; }
|
.nav-menu { width: 100%; justify-content: space-around; padding: 10px 0; }
|
||||||
.nav-actions { width: 100%; justify-content: space-around; gap: 0; }
|
.nav-item { flex-direction: column; gap: 2px; font-size: 0.7rem; }
|
||||||
.nav-btn { flex-direction: column; font-size: 0.7rem; gap: 2px; }
|
.nav-item i { font-size: 1.4rem; }
|
||||||
.nav-btn i { font-size: 1.4rem; }
|
.nav-label { font-size: 10px; }
|
||||||
.nav-btn span { font-size: 10px; }
|
.action-btn .btn-text { display: none; }
|
||||||
.icon-btn { font-size: 1.2rem; }
|
.action-btn { font-size: 1.2rem; padding: 5px; }
|
||||||
|
|
||||||
/* Bento Stacking */
|
/* Stacking Bento */
|
||||||
.bento-layout { display: flex; flex-direction: column; gap: 16px; }
|
.bento-grid { display: flex; flex-direction: column; gap: 16px; }
|
||||||
|
|
||||||
.area-profile { padding: 20px; flex-direction: row; gap: 15px; align-items: center; }
|
/* Profile Mobile */
|
||||||
.avatar-wrapper { width: 80px; height: 80px; margin: 0; }
|
.area-profile { padding: 20px; flex-direction: row; gap: 15px; align-items: center; text-align: left; }
|
||||||
.profile-meta { text-align: left; }
|
.avatar-ring { width: 80px; height: 80px; padding: 2px; margin: 0; }
|
||||||
.gradient-name { font-size: 1.6rem; margin-bottom: 4px; }
|
.status-dot { right: 0; bottom: 0; width: 12px; height: 12px; font-size: 0; padding: 0; }
|
||||||
.role-text { font-size: 0.8rem; margin-bottom: 8px; }
|
.hero-name { margin: 0 0 4px; font-size: 1.5rem; }
|
||||||
.meta-tags { justify-content: flex-start; }
|
.hero-role { font-size: 0.8rem; margin-bottom: 6px; }
|
||||||
.desktop-only { display: none; }
|
.location-tag { justify-content: flex-start; }
|
||||||
|
.desktop-social { display: none; }
|
||||||
|
|
||||||
.area-stats { padding: 15px; }
|
/* Mobile Stats */
|
||||||
.stat-grid { grid-template-columns: 1fr 1fr 1fr; gap: 5px; }
|
.area-stats { flex-direction: row; padding: 15px; }
|
||||||
.stat-cell { flex-direction: column; border-bottom: none; border-right: 1px solid rgba(128,128,128,0.1); padding: 5px; }
|
.stat-item { flex-direction: column; border-bottom: none; border-right: 1px solid rgba(128,128,128,0.1); padding: 0 10px; flex: 1; text-align: center; }
|
||||||
.stat-cell:last-child { border-right: none; }
|
.stat-item:last-child { border-right: none; }
|
||||||
.stat-num { font-size: 1.1rem; }
|
.stat-val { font-size: 1.2rem; }
|
||||||
.stat-label { font-size: 0.6rem; }
|
|
||||||
|
|
||||||
.area-tech { height: auto; min-height: auto; }
|
/* Mobile Tech Scroll (Horizontal) */
|
||||||
.tech-viewport { min-height: auto; padding: 15px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
|
.area-tech { height: auto; }
|
||||||
.tech-tag { position: relative !important; transform: none !important; margin: 0; font-size: 0.8rem; }
|
.tech-wrapper { display: none; } /* Hide PC wrapper */
|
||||||
|
.tech-wrapper.mobile-scroll {
|
||||||
|
display: grid; height: auto; min-height: 120px;
|
||||||
|
grid-template-rows: repeat(3, auto);
|
||||||
|
grid-auto-flow: column; gap: 10px;
|
||||||
|
overflow-x: auto; padding: 10px 0 20px;
|
||||||
|
scroll-snap-type: x mandatory;
|
||||||
|
}
|
||||||
|
.tech-tag-mobile {
|
||||||
|
scroll-snap-align: start;
|
||||||
|
background: rgba(128,128,128,0.08); padding: 6px 12px; border-radius: 20px;
|
||||||
|
font-size: 0.8rem; font-family: var(--font-mono); color: var(--text-secondary);
|
||||||
|
white-space: nowrap; border: 1px solid rgba(128,128,128,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
.mobile-only-box { display: flex; justify-content: space-around; padding: 20px; }
|
/* Mobile Social */
|
||||||
.s-btn { font-size: 1.5rem; color: var(--text-secondary); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(128,128,128,0.1); border-radius: 50%; }
|
.mobile-social { display: flex; justify-content: space-around; padding: 20px; }
|
||||||
|
.ms-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(128,128,128,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1.4rem; }
|
||||||
|
|
||||||
.content-columns { display: flex; flex-direction: column; gap: 20px; }
|
.content-section { display: flex; flex-direction: column; }
|
||||||
.repo-desc { -webkit-line-clamp: 1; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================================
|
/* =========================================
|
||||||
10. Modal & Footer
|
8. Modal & Footer
|
||||||
========================================= */
|
========================================= */
|
||||||
.modal-backdrop {
|
.modal-overlay {
|
||||||
position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000;
|
position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
|
||||||
background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
|
|
||||||
display: none; align-items: center; justify-content: center;
|
display: none; align-items: center; justify-content: center;
|
||||||
}
|
}
|
||||||
.modal-card {
|
.modal-glass { width: 300px; padding: 30px; text-align: center; position: relative; }
|
||||||
width: 300px; padding: 30px; background: var(--bg-canvas); border-radius: 24px;
|
.modal-close { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; color: var(--text-secondary); }
|
||||||
text-align: center; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
|
.qr-box { margin: 20px 0; }
|
||||||
}
|
.qr-box img { width: 100%; border-radius: 12px; }
|
||||||
.close-modal { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; color: var(--text-secondary); }
|
.qr-fallback { padding: 40px; background: #eee; border-radius: 12px; font-size: 0.8rem; }
|
||||||
.qr-wrapper img { width: 100%; border-radius: 12px; margin: 20px 0; border: 1px solid rgba(128,128,128,0.2); }
|
|
||||||
|
|
||||||
.site-footer { text-align: center; color: var(--text-tertiary); font-size: 0.8rem; padding-bottom: 80px; } /* padding for mobile dock */
|
.site-footer { text-align: center; color: var(--text-tertiary); font-size: 0.75rem; padding-bottom: 100px; }
|
||||||
300
js/about.js
300
js/about.js
@@ -1,20 +1,21 @@
|
|||||||
/* about.js - Robust Core with i18n & 3D Cloud */
|
/* about.js - Aurora Nexus Core */
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
new AppManager();
|
// 启动应用核心
|
||||||
|
const app = new AppCore();
|
||||||
});
|
});
|
||||||
|
|
||||||
class AppManager {
|
class AppCore {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.i18n = new I18nManager();
|
this.i18n = new I18nManager();
|
||||||
this.theme = new ThemeManager();
|
this.theme = new ThemeManager();
|
||||||
this.data = new DataFetcher();
|
this.data = new DataManager();
|
||||||
this.ui = new UIManager();
|
this.ui = new UIManager();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================
|
/* ===========================
|
||||||
1. Internationalization
|
1. I18n (Language)
|
||||||
=========================== */
|
=========================== */
|
||||||
class I18nManager {
|
class I18nManager {
|
||||||
constructor() {
|
constructor() {
|
||||||
@@ -22,52 +23,57 @@ class I18nManager {
|
|||||||
this.dict = {
|
this.dict = {
|
||||||
zh: {
|
zh: {
|
||||||
"nav.home": "首页", "nav.about": "关于", "nav.blog": "博客",
|
"nav.home": "首页", "nav.about": "关于", "nav.blog": "博客",
|
||||||
"profile.status": "在线", "profile.name": "Honesty", "profile.role": "Java 后端 & AI 探索者", "profile.location": "上海",
|
"status.online": "在线", "profile.name": "Honesty", "profile.role": "Java后端 & AI探索者", "profile.location": "上海, 中国",
|
||||||
"bio.title": "关于我", "bio.desc": "我是一名充满热情的Java后端开发工程师,专注于AI技术的探索与应用。来自湖南,现在上海工作,享受在这座充满活力的城市中追求技术梦想。", "bio.quote": "我追求技术的深度理解而非广度堆砌,每一项技术的学习都源于解决实际问题的内在驱动。",
|
"bio.label": "关于我",
|
||||||
|
"bio.text": "我是一名充满热情的Java后端开发工程师,专注于AI技术的探索与应用。来自湖南,现在上海工作,享受在这座充满活力的城市中追求技术梦想。",
|
||||||
|
"bio.quote": "我追求技术的深度理解而非广度堆砌,每一项技术的学习都源于解决实际问题的内在驱动。",
|
||||||
"stats.exp": "编程年限", "stats.repos": "开源项目", "stats.followers": "关注者",
|
"stats.exp": "编程年限", "stats.repos": "开源项目", "stats.followers": "关注者",
|
||||||
"mbti.type": "提倡者", "mbti.desc": "善于深度思考,注重细节,通过代码创造有意义的产品。",
|
"mbti.name": "提倡者", "mbti.desc": "理想主义与道德感,果断决绝的行动力。深度洞察与创意,关怀与同理心。",
|
||||||
"mbti.tag1": "理想主义", "mbti.tag2": "深度洞察", "mbti.tag3": "利他精神",
|
"mbti.tag1": "理想主义", "mbti.tag2": "深度洞察", "mbti.tag3": "同理心",
|
||||||
"tech.title": "技术栈宇宙", "interest.title": "个人兴趣",
|
"tech.title": "技术栈宇宙", "interest.title": "个人兴趣",
|
||||||
"interest.cycling": "骑行", "interest.cycling_desc": "用车轮丈量城市边界",
|
"interest.cycling": "骑行", "interest.cycling_desc": "用车轮丈量世界",
|
||||||
"interest.reading": "阅读", "interest.reading_desc": "记录思考的轨迹",
|
"interest.reading": "阅读", "interest.reading_desc": "记录思考的轨迹",
|
||||||
"interest.opensource": "开源", "interest.opensource_desc": "用代码连接世界",
|
"interest.opensource": "开源", "interest.opensource_desc": "分享代码与力量",
|
||||||
"github.title": "开源贡献", "blog.title": "最新文章", "blog.more": "查看全部", "comment.title": "留言板",
|
"interest.learning": "持续学习", "interest.learning_desc": "保持好奇心",
|
||||||
"modal.wechat_title": "关注公众号", "modal.wechat_desc": "扫码获取技术干货"
|
"github.title": "开源贡献", "blog.title": "最新文章", "blog.more": "查看更多",
|
||||||
|
"comment.title": "留言板", "modal.wechat": "微信公众号", "modal.desc": "扫码关注获取干货"
|
||||||
},
|
},
|
||||||
en: {
|
en: {
|
||||||
"nav.home": "Home", "nav.about": "About", "nav.blog": "Blog",
|
"nav.home": "Home", "nav.about": "About", "nav.blog": "Blog",
|
||||||
"profile.status": "Available", "profile.name": "Honesty", "profile.role": "Java Backend & AI Dev", "profile.location": "Shanghai",
|
"status.online": "Available", "profile.name": "Honesty", "profile.role": "Java Backend & AI Dev", "profile.location": "Shanghai, China",
|
||||||
"bio.title": "About Me", "bio.desc": "I am a passionate Java Backend Engineer focused on AI exploration. Based in Shanghai, originally from Hunan, enjoying the pursuit of technical dreams in this vibrant city.", "bio.quote": "I seek deep understanding over broad stacking. Every skill I learn is driven by the need to solve real problems.",
|
"bio.label": "About Me",
|
||||||
|
"bio.text": "I am a passionate Java Backend Engineer focused on AI exploration. Based in Shanghai, originally from Hunan, I enjoy pursuing my technical dreams in this vibrant city.",
|
||||||
|
"bio.quote": "I seek deep understanding over broad stacking. Every skill I learn is driven by the need to solve real problems.",
|
||||||
"stats.exp": "Years Exp", "stats.repos": "Projects", "stats.followers": "Followers",
|
"stats.exp": "Years Exp", "stats.repos": "Projects", "stats.followers": "Followers",
|
||||||
"mbti.type": "Advocate", "mbti.desc": "Deep thinker, detail-oriented, creating meaningful products through code.",
|
"mbti.name": "Advocate", "mbti.desc": "Idealism and morality, decisive action. Deep insight and creativity, care and empathy.",
|
||||||
"mbti.tag1": "Idealism", "mbti.tag2": "Insight", "mbti.tag3": "Altruism",
|
"mbti.tag1": "Idealism", "mbti.tag2": "Insight", "mbti.tag3": "Empathy",
|
||||||
"tech.title": "Tech Universe", "interest.title": "Interests",
|
"tech.title": "Tech Universe", "interest.title": "Interests",
|
||||||
"interest.cycling": "Cycling", "interest.cycling_desc": "Measuring the world on wheels",
|
"interest.cycling": "Cycling", "interest.cycling_desc": "Measuring the world",
|
||||||
"interest.reading": "Reading", "interest.reading_desc": "Recording thoughts via text",
|
"interest.reading": "Reading", "interest.reading_desc": "Tracks of thought",
|
||||||
"interest.opensource": "Open Source", "interest.opensource_desc": "Connecting world with code",
|
"interest.opensource": "Open Source", "interest.opensource_desc": "Sharing power",
|
||||||
"github.title": "Open Source", "blog.title": "Latest Posts", "blog.more": "View All", "comment.title": "Message Board",
|
"interest.learning": "Learning", "interest.learning_desc": "Stay curious",
|
||||||
"modal.wechat_title": "Official Account", "modal.wechat_desc": "Scan for tech insights"
|
"github.title": "Open Source", "blog.title": "Latest Posts", "blog.more": "View All",
|
||||||
|
"comment.title": "Message Board", "modal.wechat": "WeChat Account", "modal.desc": "Scan for tech insights"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
this.render();
|
this.apply();
|
||||||
$('#lang-toggle').on('click', () => {
|
$('#lang-btn').on('click', () => {
|
||||||
this.lang = this.lang === 'zh' ? 'en' : 'zh';
|
this.lang = this.lang === 'zh' ? 'en' : 'zh';
|
||||||
localStorage.setItem('lang', this.lang);
|
localStorage.setItem('lang', this.lang);
|
||||||
this.render();
|
this.apply();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
apply() {
|
||||||
const t = this.dict[this.lang];
|
const t = this.dict[this.lang];
|
||||||
$('[data-i18n]').each(function() {
|
$('[data-i18n]').each(function() {
|
||||||
const key = $(this).data('i18n');
|
const k = $(this).data('i18n');
|
||||||
if(t[key]) $(this).text(t[key]);
|
if(t[k]) $(this).text(t[k]);
|
||||||
});
|
});
|
||||||
$('.lang-text').text(this.lang === 'zh' ? 'EN' : '中');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,106 +82,137 @@ class I18nManager {
|
|||||||
=========================== */
|
=========================== */
|
||||||
class ThemeManager {
|
class ThemeManager {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
this.root = document.documentElement;
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
init() {
|
init() {
|
||||||
const saved = localStorage.getItem('theme') || 'day';
|
const saved = localStorage.getItem('theme') || 'day';
|
||||||
if (saved === 'night') document.documentElement.setAttribute('data-theme', 'night');
|
if(saved === 'night') this.root.setAttribute('data-theme', 'night');
|
||||||
|
|
||||||
$('#theme-toggle').on('click', () => {
|
$('#theme-btn').on('click', () => {
|
||||||
const current = document.documentElement.getAttribute('data-theme');
|
const curr = this.root.getAttribute('data-theme');
|
||||||
const next = current === 'night' ? 'day' : 'night';
|
const next = curr === 'night' ? 'day' : 'night';
|
||||||
if (next === 'night') document.documentElement.setAttribute('data-theme', 'night');
|
if(next === 'night') this.root.setAttribute('data-theme', 'night');
|
||||||
else document.documentElement.removeAttribute('data-theme');
|
else this.root.removeAttribute('data-theme');
|
||||||
localStorage.setItem('theme', next);
|
localStorage.setItem('theme', next);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================
|
/* ===========================
|
||||||
3. Data & API (Robust)
|
3. Data Manager (Robust)
|
||||||
=========================== */
|
=========================== */
|
||||||
class DataFetcher {
|
class DataManager {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fallbackRepos = [
|
// Fallback Data if APIs fail
|
||||||
{ name: "yunxiao-LLM-reviewer", description: "AI Code Reviewer based on LLM", stargazers_count: 9, html_url: "#" },
|
this.defaults = {
|
||||||
{ name: "hexo-theme-stellar", description: "A beautiful Hexo theme", stargazers_count: 5, html_url: "#" },
|
repos: [
|
||||||
{ name: "Universal-IoT-Java", description: "IoT Platform implementation", stargazers_count: 2, html_url: "#" }
|
{name: "yunxiao-LLM-reviewer", desc: "AI Code Reviewer based on LLM", stars: 9, url: "#"},
|
||||||
];
|
{name: "hexo-theme-stellar", desc: "Comprehensive Hexo theme", stars: 5, url: "#"},
|
||||||
this.fallbackPosts = [
|
{name: "Universal-IoT-Java", desc: "IoT Platform Demo", stars: 2, url: "#"}
|
||||||
{ title: "Vector Database Guide", pubDate: "2025-01-02", category: "Tech", link: "#" },
|
],
|
||||||
{ title: "Spring Boot 3.0 Features", pubDate: "2024-12-30", category: "Java", link: "#" },
|
posts: [
|
||||||
{ title: "Microservices Patterns", pubDate: "2024-12-28", category: "Arch", link: "#" }
|
{title: "Vector Database Guide", date: "2025-01-02", cat: "Tech", url: "#"},
|
||||||
];
|
{title: "Spring Boot 3.0 Features", date: "2024-12-30", cat: "Java", url: "#"},
|
||||||
|
{title: "Microservices Patterns", date: "2024-12-28", cat: "Arch", url: "#"}
|
||||||
|
],
|
||||||
|
user: { repos: 165, followers: 6, created: "2018-05-14" }
|
||||||
|
};
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
this.fetchGitHub();
|
this.fetchGithub();
|
||||||
this.fetchBlog();
|
this.fetchBlog();
|
||||||
}
|
}
|
||||||
|
|
||||||
fetchGitHub() {
|
// 优先缓存 -> API -> 默认值
|
||||||
const user = (window.SiteConfig && window.SiteConfig.github) ? window.SiteConfig.github.username : 'listener-He';
|
async fetchGithub() {
|
||||||
|
const user = (window.SiteConfig?.github?.username) || 'listener-He';
|
||||||
|
const cacheKey = 'gh_data_v2';
|
||||||
|
const cached = JSON.parse(localStorage.getItem(cacheKey));
|
||||||
|
const now = Date.now();
|
||||||
|
|
||||||
// 1. User Stats
|
// Check Cache (1 hour)
|
||||||
$.ajax({
|
if(cached && (now - cached.time < 3600000)) {
|
||||||
url: `https://api.github.com/users/${user}`,
|
this.renderUser(cached.user);
|
||||||
timeout: 5000
|
this.renderRepos(cached.repos);
|
||||||
}).done(data => {
|
return;
|
||||||
const years = new Date().getFullYear() - new Date(data.created_at).getFullYear();
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Parallel Fetch
|
||||||
|
const [uRes, rRes] = await Promise.allSettled([
|
||||||
|
fetch(`https://api.github.com/users/${user}`),
|
||||||
|
fetch(`https://api.github.com/users/${user}/repos?sort=stars&per_page=6`)
|
||||||
|
]);
|
||||||
|
|
||||||
|
const userData = uRes.status === 'fulfilled' ? await uRes.value.json() : this.defaults.user;
|
||||||
|
const repoData = rRes.status === 'fulfilled' ? await rRes.value.json() : this.defaults.repos;
|
||||||
|
|
||||||
|
// Cache & Render
|
||||||
|
localStorage.setItem(cacheKey, JSON.stringify({
|
||||||
|
user: userData, repos: repoData, time: now
|
||||||
|
}));
|
||||||
|
this.renderUser(userData);
|
||||||
|
this.renderRepos(repoData);
|
||||||
|
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("GH API Fail", e);
|
||||||
|
this.renderUser(this.defaults.user);
|
||||||
|
this.renderRepos(this.defaults.repos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
renderUser(data) {
|
||||||
|
const years = new Date().getFullYear() - new Date(data.created_at || this.defaults.user.created).getFullYear();
|
||||||
$('#coding-years').text(years + "+");
|
$('#coding-years').text(years + "+");
|
||||||
$('#github-repos').text(data.public_repos);
|
$('#github-repos').text(data.public_repos || this.defaults.user.repos);
|
||||||
$('#github-followers').text(data.followers);
|
$('#github-followers').text(data.followers || this.defaults.user.followers);
|
||||||
}).fail(() => {
|
|
||||||
console.warn("GH API fail, using default stats");
|
|
||||||
});
|
|
||||||
|
|
||||||
// 2. Repos
|
|
||||||
$.ajax({
|
|
||||||
url: `https://api.github.com/users/${user}/repos?sort=stars&per_page=6`,
|
|
||||||
timeout: 5000
|
|
||||||
}).done(data => this.renderRepos(data))
|
|
||||||
.fail(() => this.renderRepos(this.fallbackRepos));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
renderRepos(list) {
|
renderRepos(list) {
|
||||||
|
if(!Array.isArray(list)) list = this.defaults.repos;
|
||||||
let html = '';
|
let html = '';
|
||||||
list.slice(0, 5).forEach(repo => {
|
list.slice(0, 5).forEach(repo => {
|
||||||
// Fix: handle API field naming differences
|
// Fix: API field compatibility
|
||||||
const stars = repo.stargazers_count !== undefined ? repo.stargazers_count : (repo.stars || 0);
|
const stars = repo.stargazers_count !== undefined ? repo.stargazers_count : (repo.stars || 0);
|
||||||
const desc = repo.description || 'No description provided.';
|
const desc = repo.description || repo.desc || 'No description.';
|
||||||
|
const url = repo.html_url || repo.url || '#';
|
||||||
|
|
||||||
html += `
|
html += `
|
||||||
<div class="repo-card" onclick="window.open('${repo.html_url}')">
|
<div class="repo-card" onclick="window.open('${url}')">
|
||||||
<div class="repo-top">
|
<div class="repo-head">
|
||||||
<span>${repo.name}</span>
|
<span>${repo.name}</span>
|
||||||
<span style="color:#f1c40f">★ ${stars}</span>
|
<span style="color:#f1c40f"><i class="ri-star-fill"></i> ${stars}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="repo-desc" title="${desc}">${desc}</div>
|
<div class="repo-desc">${desc}</div>
|
||||||
</div>`;
|
</div>`;
|
||||||
});
|
});
|
||||||
$('#projects-container').html(html);
|
$('#projects-container').html(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
fetchBlog() {
|
fetchBlog() {
|
||||||
// Direct fetch from JSON to avoid CORS issues with RSS
|
|
||||||
fetch('data/articles.json')
|
fetch('data/articles.json')
|
||||||
.then(res => res.json())
|
.then(r => r.json())
|
||||||
.then(data => this.renderBlog(data))
|
.then(data => this.renderBlog(data))
|
||||||
.catch(() => this.renderBlog(this.fallbackPosts));
|
.catch(() => this.renderBlog(this.defaults.posts));
|
||||||
}
|
}
|
||||||
|
|
||||||
renderBlog(list) {
|
renderBlog(list) {
|
||||||
let html = '';
|
let html = '';
|
||||||
list.slice(0, 5).forEach(art => {
|
list.slice(0, 5).forEach(post => {
|
||||||
const date = art.pubDate ? art.pubDate.split('T')[0] : 'Recent';
|
const date = (post.pubDate || post.date || '').split('T')[0];
|
||||||
|
const cat = post.category || post.cat || 'Tech';
|
||||||
|
const link = post.link || post.url || '#';
|
||||||
|
|
||||||
html += `
|
html += `
|
||||||
<div class="blog-card" onclick="window.open('${art.link}')">
|
<div class="blog-item" onclick="window.open('${link}')">
|
||||||
<div class="b-title">${art.title}</div>
|
<div class="b-info">
|
||||||
<div class="b-meta">
|
<div class="b-title">${post.title}</div>
|
||||||
<span>${date}</span>
|
<div class="b-date">${date}</div>
|
||||||
<span style="color:var(--accent-color)">#${art.category}</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="b-cat">${cat}</div>
|
||||||
</div>`;
|
</div>`;
|
||||||
});
|
});
|
||||||
$('#blog-container').html(html);
|
$('#blog-container').html(html);
|
||||||
@@ -183,82 +220,83 @@ class DataFetcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================
|
/* ===========================
|
||||||
4. UI Manager (Tech Cloud)
|
4. UI Manager (Visuals)
|
||||||
=========================== */
|
=========================== */
|
||||||
class UIManager {
|
class UIManager {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.initTechCloud();
|
this.initTechCloud();
|
||||||
this.initModal();
|
this.initModal();
|
||||||
this.initComments();
|
this.initArtalk();
|
||||||
}
|
}
|
||||||
|
|
||||||
initModal() {
|
initModal() {
|
||||||
window.toggleWechat = function() {
|
window.toggleWechat = () => {
|
||||||
const m = $('#wechat-modal');
|
const m = $('#wechat-modal');
|
||||||
if(m.is(':visible')) m.fadeOut(200);
|
m.is(':visible') ? m.fadeOut(200) : m.css('display','flex').hide().fadeIn(200);
|
||||||
else m.css('display','flex').hide().fadeIn(200);
|
|
||||||
};
|
};
|
||||||
$('#wechat-modal').on('click', function(e) {
|
$('#wechat-modal').on('click', function(e) {
|
||||||
if(e.target === this) toggleWechat();
|
if(e.target === this) toggleWechat();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
initComments() {
|
initArtalk() {
|
||||||
if(typeof Artalk !== 'undefined' && window.SiteConfig && window.SiteConfig.artalk) {
|
// Safe initialization
|
||||||
|
if(typeof Artalk !== 'undefined' && window.SiteConfig?.artalk) {
|
||||||
try {
|
try {
|
||||||
Artalk.init({
|
Artalk.init({
|
||||||
el: '#artalk-container',
|
el: '#artalk-container',
|
||||||
pageKey: '/about', // Hardcoded for this page or use window.location.pathname
|
pageKey: '/about',
|
||||||
pageTitle: 'About Me',
|
pageTitle: 'About Me',
|
||||||
server: window.SiteConfig.artalk.server,
|
server: window.SiteConfig.artalk.server,
|
||||||
site: window.SiteConfig.artalk.site,
|
site: window.SiteConfig.artalk.site,
|
||||||
darkMode: document.documentElement.getAttribute('data-theme') === 'night'
|
darkMode: document.documentElement.getAttribute('data-theme') === 'night'
|
||||||
});
|
});
|
||||||
} catch(e) { console.error("Artalk error", e); }
|
} catch(e) { console.error("Artalk Error", e); }
|
||||||
} else {
|
} else {
|
||||||
$('#artalk-container').html('<div style="text-align:center;padding:20px;color:#999">Comments loading...</div>');
|
$('#artalk-container').html('<div style="text-align:center;color:#999;padding:20px;">Message board loading...</div>');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
initTechCloud() {
|
initTechCloud() {
|
||||||
const container = document.getElementById('tech-cloud-container');
|
const container = document.getElementById('tech-container');
|
||||||
if(!container) return;
|
if(!container) return;
|
||||||
|
|
||||||
const isMobile = window.innerWidth < 768;
|
const techStack = window.SiteConfig?.techStack || [
|
||||||
const techStack = (window.SiteConfig && window.SiteConfig.techStack) ? window.SiteConfig.techStack : [
|
{name:'Java'},{name:'Spring'},{name:'Docker'},{name:'K8s'},{name:'Python'},{name:'Redis'},
|
||||||
{name:'Java',weight:5},{name:'Spring',weight:5},{name:'Docker',weight:4},
|
{name:'React'},{name:'Vue'},{name:'MySQL'},{name:'MongoDB'},{name:'Linux'},{name:'Git'}
|
||||||
{name:'K8s',weight:3},{name:'Python',weight:4},{name:'Redis',weight:4}
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const isMobile = window.innerWidth < 768;
|
||||||
container.innerHTML = '';
|
container.innerHTML = '';
|
||||||
|
|
||||||
|
if(isMobile) {
|
||||||
|
// Mobile: Horizontal Scroll Snap (Compact 3 rows)
|
||||||
|
container.classList.add('mobile-scroll');
|
||||||
|
techStack.forEach(item => {
|
||||||
|
const el = document.createElement('span');
|
||||||
|
el.className = 'tech-tag-mobile';
|
||||||
|
el.innerText = item.name;
|
||||||
|
container.appendChild(el);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// PC: 3D Sphere
|
||||||
|
container.classList.remove('mobile-scroll');
|
||||||
const tags = [];
|
const tags = [];
|
||||||
|
|
||||||
// Colors for tags
|
techStack.forEach(item => {
|
||||||
const colors = ['#6c5ce7', '#0984e3', '#00b894', '#fdcb6e', '#e17055', '#d63031'];
|
const el = document.createElement('a');
|
||||||
|
el.className = 'tech-tag-3d';
|
||||||
techStack.forEach((item, i) => {
|
|
||||||
const el = document.createElement('span');
|
|
||||||
el.className = 'tech-tag';
|
|
||||||
el.innerText = item.name;
|
el.innerText = item.name;
|
||||||
el.style.color = colors[i % colors.length];
|
|
||||||
// Mobile: relative positioning handled by CSS Flexbox
|
|
||||||
// PC: absolute positioning handled by JS below
|
|
||||||
container.appendChild(el);
|
container.appendChild(el);
|
||||||
tags.push({ el, x:0, y:0, z:0 });
|
tags.push({ el, x:0, y:0, z:0 });
|
||||||
});
|
});
|
||||||
|
|
||||||
if(isMobile) return; // CSS flexbox handles mobile
|
let radius = 120; // Smaller radius to fit
|
||||||
|
const dtr = Math.PI/180;
|
||||||
// PC 3D Logic
|
|
||||||
let radius = 130;
|
|
||||||
let dtr = Math.PI / 180;
|
|
||||||
let mcList = [];
|
|
||||||
let active = false;
|
|
||||||
let lasta=1, lastb=1;
|
let lasta=1, lastb=1;
|
||||||
let size = 200;
|
let active=false, mouseX=0, mouseY=0;
|
||||||
let mouseX = 0, mouseY = 0;
|
|
||||||
|
|
||||||
// Position Tags on Sphere
|
// Init positions
|
||||||
tags.forEach((tag, i) => {
|
tags.forEach((tag, i) => {
|
||||||
let phi = Math.acos(-1 + (2*i+1)/tags.length);
|
let phi = Math.acos(-1 + (2*i+1)/tags.length);
|
||||||
let theta = Math.sqrt(tags.length * Math.PI) * phi;
|
let theta = Math.sqrt(tags.length * Math.PI) * phi;
|
||||||
@@ -275,41 +313,39 @@ class UIManager {
|
|||||||
mouseY = (e.clientY - (rect.top + rect.height/2)) / 5;
|
mouseY = (e.clientY - (rect.top + rect.height/2)) / 5;
|
||||||
};
|
};
|
||||||
|
|
||||||
function update() {
|
const update = () => {
|
||||||
let a, b;
|
let a, b;
|
||||||
if(active) {
|
if(active) {
|
||||||
a = (-Math.min(Math.max(-mouseY, -size), size) / radius) * 2;
|
a = (-Math.min(Math.max(-mouseY, -200), 200)/radius) * 2;
|
||||||
b = (Math.min(Math.max(-mouseX, -size), size) / radius) * 2;
|
b = (Math.min(Math.max(-mouseX, -200), 200)/radius) * 2;
|
||||||
} else {
|
} else {
|
||||||
a = lasta * 0.96;
|
a = lasta * 0.98; // Auto rotate
|
||||||
b = lastb * 0.96;
|
b = lastb * 0.98;
|
||||||
}
|
}
|
||||||
lasta=a; lastb=b;
|
lasta=a; lastb=b;
|
||||||
|
|
||||||
if(Math.abs(a)<=0.01 && Math.abs(b)<=0.01) return requestAnimationFrame(update);
|
if(Math.abs(a)<=0.01 && Math.abs(b)<=0.01 && !active) a=0.5; // Keep spinning slowly
|
||||||
|
|
||||||
let sa=Math.sin(a*dtr), ca=Math.cos(a*dtr);
|
let sa=Math.sin(a*dtr), ca=Math.cos(a*dtr);
|
||||||
let sb=Math.sin(b*dtr), cb=Math.cos(b*dtr);
|
let sb=Math.sin(b*dtr), cb=Math.cos(b*dtr);
|
||||||
|
|
||||||
tags.forEach(tag => {
|
tags.forEach(tag => {
|
||||||
let rx1 = tag.x, ry1 = tag.y*ca + tag.z*-sa, rz1 = tag.y*sa + tag.z*ca;
|
let rx1=tag.x, ry1=tag.y*ca - tag.z*sa, rz1=tag.y*sa + tag.z*ca;
|
||||||
let rx2=rx1*cb + rz1*sb, ry2=ry1, rz2=rx1*-sb + rz1*cb;
|
let rx2=rx1*cb + rz1*sb, ry2=ry1, rz2=rx1*-sb + rz1*cb;
|
||||||
tag.x=rx2; tag.y=ry2; tag.z=rz2;
|
tag.x=rx2; tag.y=ry2; tag.z=rz2;
|
||||||
|
|
||||||
let alpha = (tag.z + radius) / (2*radius);
|
let scale = (tag.z + radius)/(2*radius) + 0.5;
|
||||||
let scale = alpha + 0.6;
|
let opacity = (tag.z + radius)/(2*radius) + 0.2;
|
||||||
let opacity = alpha + 0.4;
|
|
||||||
|
|
||||||
tag.el.style.opacity = Math.min(Math.max(opacity, 0.2), 1);
|
tag.el.style.opacity = Math.min(Math.max(opacity, 0.1), 1);
|
||||||
tag.el.style.zIndex = parseInt(scale*100);
|
tag.el.style.zIndex = parseInt(scale*100);
|
||||||
|
|
||||||
// Center offset
|
|
||||||
let left = tag.x + container.offsetWidth/2 - tag.el.offsetWidth/2;
|
let left = tag.x + container.offsetWidth/2 - tag.el.offsetWidth/2;
|
||||||
let top = tag.y + container.offsetHeight/2 - tag.el.offsetHeight/2;
|
let top = tag.y + container.offsetHeight/2 - tag.el.offsetHeight/2;
|
||||||
tag.el.style.transform = `translate(${left}px, ${top}px) scale(${scale})`;
|
tag.el.style.transform = `translate(${left}px, ${top}px) scale(${scale})`;
|
||||||
});
|
});
|
||||||
requestAnimationFrame(update);
|
requestAnimationFrame(update);
|
||||||
}
|
};
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user