project: prototype-h5
parent: askyi
type: prototype
kanban_id: f435fea5-30f5-449d-8e8f-2d493e9af1
tech_stack:
问易社区移动应用 UI 原型,静态 HTML 页面
prototype-h5/
├── css/ # CSS 样式文件
│ ├── main.css # 主要样式
│ └── ... # 各页面专用样式
├── includes/ # 页面内容片段
│ ├── header.html # 头部模板
│ ├── footer.html # 尾部模板
│ └── ...
├── js/ # JavaScript 文件
│ ├── components.js # 组件加载函数
│ ├── templates.js # HTML 模板函数
│ └── utils.js # 工具函数
├── pages/ # 页面文件
│ ├── home.html # 首页
│ ├── login.html # 登录页面
│ └── ...
├── assets/ # 资源文件
├── examples/ # 示例和文档
└── index.html # 入口页面
cd /Users/jamesw/dev_workspace/askyi/organization/prototype-h5
# 直接用浏览器打开
open index.html
# 或使用本地服务器
python -m http.server 8000
# 访问 http://localhost:8000
prototype-h5 是设计阶段的参考,askyi-h5 是实际实现:
prototype-h5 (设计) → askyi-h5 (实现)
开发新功能时,可先在 prototype-h5 中验证 UI 设计。