New search function et drag and drop clean
This commit is contained in:
21
notes/projets/mobile/pwa.md
Normal file
21
notes/projets/mobile/pwa.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: "Progressive Web App"
|
||||
date: "10-11-2025"
|
||||
last_modified: "10-11-2025:19:21"
|
||||
tags: ["projet", "mobile", "pwa"]
|
||||
---
|
||||
|
||||
# PWA Features
|
||||
|
||||
## À implémenter
|
||||
|
||||
1. Service Worker
|
||||
2. Manifest.json
|
||||
3. Offline support
|
||||
4. Install prompt
|
||||
|
||||
## Avantages
|
||||
|
||||
- Fonctionne offline
|
||||
- Installable sur mobile
|
||||
- Notifications push possibles
|
||||
26
notes/projets/mobile/responsive-design.md
Normal file
26
notes/projets/mobile/responsive-design.md
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
title: "Responsive Design"
|
||||
date: "10-11-2025"
|
||||
last_modified: "10-11-2025:19:21"
|
||||
tags: ["projet", "mobile", "css"]
|
||||
---
|
||||
|
||||
# Responsive Design
|
||||
|
||||
## Media Queries
|
||||
|
||||
```css
|
||||
@media (max-width: 768px) {
|
||||
/* Tablettes */
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
/* Smartphones */
|
||||
}
|
||||
```
|
||||
|
||||
## Mobile-First
|
||||
|
||||
- Sidebar masquée par défaut
|
||||
- Preview-only mode
|
||||
- Touch-friendly buttons
|
||||
Reference in New Issue
Block a user