🚀 赛博朋克开发者作品集 🚀

一个具有矩阵雨效果和赛博朋克美学的未来感交互式个人网站

[![网站](https://img.shields.io/badge/网站-在线-00ff88?style=for-the-badge)](https://wangzji.github.io) [![HTML5](https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white)](https://developer.mozilla.org/zh-CN/docs/Web/HTML) [![CSS3](https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white)](https://developer.mozilla.org/zh-CN/docs/Web/CSS) [![JavaScript](https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black)](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript) [![English](https://img.shields.io/badge/English-d9d9d9?style=flat-square)](README.md) [![简体中文](https://img.shields.io/badge/简体中文-d9d9d9?style=flat-square)](README.zh.md)

🌟 功能特色

🛠️ 技术栈

const developer = {
  name: 'Eric Wang',
  skills: ['React', 'Java', 'Go'],
  passion: '创造魔法',
  experience: '10+ 年',
  projects: '25+',
  code() {
    return '令人惊艳的项目';
  }
};

使用技术

📂 项目结构

wangzji.github.io/
├── index.html      # 主HTML结构
├── styles.css      # 赛博朋克样式和动画
├── script.js       # 交互效果和矩阵雨
├── README.md       # 英文项目文档
├── README-zh.md    # 中文项目文档
└── LICENSE         # MIT许可证

🚀 快速开始

本地开发

# 克隆仓库
git clone https://github.com/WangzJi/wangzji.github.io.git
cd wangzji.github.io

# 启动本地服务器
python -m http.server 8000
# 或者
npx serve

# 打开浏览器
open http://localhost:8000

GitHub Pages 部署

  1. Fork 这个仓库
  2. 在仓库设置中启用 GitHub Pages
  3. 选择 main 分支作为源
  4. 访问 https://yourusername.github.io

🎨 自定义配置

个人信息

index.html 中更新你的详细信息:

<!-- 终端输出 -->
<div class="output-line">
  <span class="output-prompt">></span> 你的姓名
</div>
<div class="output-line">
  <span class="output-prompt">></span> 你的职位
</div>

<!-- 联系信息 -->
<a href="mailto:your.email@example.com">your.email@example.com</a>

颜色方案

styles.css 中修改CSS变量:

:root {
  --primary-color: #00ff88;    /* 矩阵绿 */
  --secondary-color: #ff0080;  /* 霓虹粉 */
  --accent-color: #00d4ff;     /* 赛博蓝 */
  --bg-primary: #0a0a0a;       /* 深黑色 */
}

🔧 高级功能

矩阵雨配置

script.js 中自定义矩阵效果:

class MatrixRain {
  constructor() {
    this.characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()';
    this.fontSize = 14;
    // 根据需要自定义
  }
}

性能选项

网站会自动为低性能设备优化:

📱 响应式设计

设备 断点 优化措施
手机 < 768px 简化布局,减少效果
平板 768px - 1024px 优化网格,触摸友好
桌面 > 1024px 完整效果,增强动画

🎯 浏览器支持

📈 性能表现

🤖 交互元素

终端模拟

代码预览

UI元素

🎮 彩蛋功能

📧 联系方式

📄 许可证

本项目基于 MIT 许可证 开源。

🌟 致谢

由 Eric Wang 用 💚 创造

灵感来源于赛博朋克美学和《黑客帝国》


用创造数字体验的热情构建

🔄 版本说明

v1.0.0 (当前版本)

🚧 计划功能

🛠️ 开发指南

代码风格

// 使用现代ES6+语法
const initFeature = () => {
  // 功能实现
};

// CSS变量命名
:root {
  --feature-color: #value;
}

贡献指南

  1. Fork 项目
  2. 创建功能分支 (git checkout -b feature/AmazingFeature)
  3. 提交更改 (git commit -m 'Add some AmazingFeature')
  4. 推送到分支 (git push origin feature/AmazingFeature)
  5. 创建 Pull Request

📚 学习资源


💡 提示: 如果你喜欢这个项目,别忘了给它一个⭐️!