37 lines
730 B
Markdown
Executable File
37 lines
730 B
Markdown
Executable File
# 图片资源
|
||
|
||
本目录存放项目的所有图片资源。
|
||
|
||
## 📁 文件列表
|
||
|
||
- `logo.jpg` - 系统主 Logo(106KB, 512x512)
|
||
|
||
## 🎨 使用方式
|
||
|
||
### 前端访问
|
||
```jsx
|
||
<img src="/static/images/logo.jpg" alt="logo" />
|
||
```
|
||
|
||
### 后端访问(FastAPI)
|
||
```python
|
||
from fastapi.staticfiles import StaticFiles
|
||
app.mount("/static", StaticFiles(directory="static"), name="static")
|
||
```
|
||
|
||
## 📐 建议尺寸
|
||
|
||
- **Logo**: 512x512 或更大(用于缩放)
|
||
- **背景图**: 1920x1080(全屏背景)
|
||
- **头像**: 200x200(用户头像)
|
||
|
||
## 📦 格式建议
|
||
|
||
- **Logo**: PNG(透明背景)或 JPG
|
||
- **照片**: JPG(压缩比好)
|
||
- **图标**: SVG(矢量可缩放)或 PNG
|
||
|
||
---
|
||
|
||
**最后更新**: 2026-03-16
|