Frontend Slides
Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.
Inspired by the visual exploration approach showcased in work by zarazhangrui (credit: @zarazhangrui).
When to Activate
- Creating a talk deck, pitch deck, workshop deck, or internal presentation
- Converting
.ppt or .pptx slides into an HTML presentation
- Improving an existing HTML presentation's layout, motion, or typography
- Exploring presentation styles with a user who does not know their design preference yet
Non-Negotiables
- Zero dependencies: default to one self-contained HTML file with inline CSS and JS.
- Viewport fit is mandatory: every slide must fit inside one viewport with no internal scrolling.
- Show, don't tell: use visual previews instead of abstract style questionnaires.
- Distinctive design: avoid generic purple-gradient, Inter-on-white, template-looking decks.
- Production quality: keep code commented, accessible, responsive, and performant.
Before generating, read STYLE_PRESETS.md for the viewport-safe CSS base, density limits, preset catalog, and CSS gotchas.
Workflow
1. Detect Mode
Choose one path:
- New presentation: user has a topic, notes, or full draft
- PPT conversion: user has
.ppt or .pptx
- Enhancement: user already has HTML slides and wants improvements
2. Discover Content
Ask only the minimum needed:
- purpose: pitch, teaching, conference talk, internal update
- length: short (5-10), medium (10-20), long (20+)
- content state: finished copy, rough notes, topic only
If the user has content, ask them to paste it before styling.
3. Discover Style
Default to visual exploration.
If the user already knows the desired preset, skip previews and use it directly.
Otherwise:
- Ask what feeling the deck should create: impressed, energized, focused, inspired.
- Generate 3 single-slide preview files in
.ecc-design/slide-previews/.
- Each preview must be self-contained, show typography/color/motion clearly, and stay under roughly 100 lines of slide content.
- Ask the user which preview to keep or what elements to mix.
Use the preset guide in STYLE_PRESETS.md when mapping mood to style.
4. Build the Presentation
Output either:
presentation.html
[presentation-name].html
Use an assets/ folder only when the deck contains extracted or user-supplied images.
Required structure:
- semantic slide sections
- a viewport-safe CSS base from
STYLE_PRESETS.md
- CSS custom properties for theme values
- a presentation controller class for keyboard, wheel, and touch navigation
- Intersection Observer for reveal animations
- reduced-motion support
5. Enforce Viewport Fit
Treat this as a hard gate.
Rules:
- every
.slide must use height: 100vh; height: 100dvh; overflow: hidden;
- all type and spacing must scale with
clamp()
- when content does not fit, split into multiple slides
- never solve overflow by shrinking text below readable sizes
- never allow scrollbars inside a slide
Use the density limits and mandatory CSS block in STYLE_PRESETS.md.
6. Validate
Check the finished deck at these sizes:
- 1920x1080
- 1280x720
- 768x1024
- 375x667
- 667x375
If browser automation is available, use it to verify no slide overflows and that keyboard navigation works.
7. Deliver
At handoff:
- delete temporary preview files unless the user wants to keep them
- open the deck with the platform-appropriate opener when useful
- summarize file path, preset used, slide count, and easy theme customization points
Use the correct opener for the current OS:
- macOS:
open file.html
- Linux:
xdg-open file.html
- Windows:
start "" file.html
PPT / PPTX Conversion
For PowerPoint conversion:
- Prefer
python3 with python-pptx to extract text, images, and notes.
- If
python-pptx is unavailable, ask whether to install it or fall back to a manual/export-based workflow.
- Preserve slide order, speaker notes, and extracted assets.
- After extraction, run the same style-selection workflow as a new presentation.
Keep conversion cross-platform. Do not rely on macOS-only tools when Python can do the job.
Implementation Requirements
HTML / CSS
- Use inline CSS and JS unless the user explicitly wants a multi-file project.
- Fonts may come from Google Fonts or Fontshare.
- Prefer atmospheric backgrounds, strong type hierarchy, and a clear visual direction.
- Use abstract shapes, gradients, grids, noise, and geometry rather than illustrations.
JavaScript
Include:
- keyboard navigation
- touch / swipe navigation
- mouse wheel navigation
- progress indicator or slide index
- reveal-on-enter animation triggers
Accessibility
- use semantic structure (
main, section, nav)
- keep contrast readable
- support keyboard-only navigation
- respect
prefers-reduced-motion
Content Density Limits
Use these maxima unless the user explicitly asks for denser slides and readability still holds:
| Slide type |
Limit |
| Title |
1 heading + 1 subtitle + optional tagline |
| Content |
1 heading + 4-6 bullets or 2 short paragraphs |
| Feature grid |
6 cards max |
| Code |
8-10 lines max |
| Quote |
1 quote + attribution |
| Image |
1 image constrained by viewport |
Anti-Patterns
- generic startup gradients with no visual identity
- system-font decks unless intentionally editorial
- long bullet walls
- code blocks that need scrolling
- fixed-height content boxes that break on short screens
- invalid negated CSS functions like
-clamp(...)
Related ECC Skills
frontend-patterns for component and interaction patterns around the deck
liquid-glass-design when a presentation intentionally borrows Apple glass aesthetics
e2e-testing if you need automated browser verification for the final deck
Deliverable Checklist
- presentation runs from a local file in a browser
- every slide fits the viewport without scrolling
- style is distinctive and intentional
- animation is meaningful, not noisy
- reduced motion is respected
- file paths and customization points are explained at handoff
1---2name: frontend-slides3description: Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.4---56# Frontend Slides78Create zero-dependency, animation-rich HTML presentations that run entirely in the browser.910Inspired by the visual exploration approach showcased in work by zarazhangrui (credit: @zarazhangrui).1112## When to Activate1314- Creating a talk deck, pitch deck, workshop deck, or internal presentation15- Converting `.ppt` or `.pptx` slides into an HTML presentation16- Improving an existing HTML presentation's layout, motion, or typography17- Exploring presentation styles with a user who does not know their design preference yet1819## Non-Negotiables20211. **Zero dependencies**: default to one self-contained HTML file with inline CSS and JS.222. **Viewport fit is mandatory**: every slide must fit inside one viewport with no internal scrolling.233. **Show, don't tell**: use visual previews instead of abstract style questionnaires.244. **Distinctive design**: avoid generic purple-gradient, Inter-on-white, template-looking decks.255. **Production quality**: keep code commented, accessible, responsive, and performant.2627Before generating, read `STYLE_PRESETS.md` for the viewport-safe CSS base, density limits, preset catalog, and CSS gotchas.2829## Workflow3031### 1. Detect Mode3233Choose one path:3435- **New presentation**: user has a topic, notes, or full draft36- **PPT conversion**: user has `.ppt` or `.pptx`37- **Enhancement**: user already has HTML slides and wants improvements3839### 2. Discover Content4041Ask only the minimum needed:4243- purpose: pitch, teaching, conference talk, internal update44- length: short (5-10), medium (10-20), long (20+)45- content state: finished copy, rough notes, topic only4647If the user has content, ask them to paste it before styling.4849### 3. Discover Style5051Default to visual exploration.5253If the user already knows the desired preset, skip previews and use it directly.5455Otherwise:56571. Ask what feeling the deck should create: impressed, energized, focused, inspired.582. Generate **3 single-slide preview files** in `.ecc-design/slide-previews/`.593. Each preview must be self-contained, show typography/color/motion clearly, and stay under roughly 100 lines of slide content.604. Ask the user which preview to keep or what elements to mix.6162Use the preset guide in `STYLE_PRESETS.md` when mapping mood to style.6364### 4. Build the Presentation6566Output either:6768- `presentation.html`69- `[presentation-name].html`7071Use an `assets/` folder only when the deck contains extracted or user-supplied images.7273Required structure:7475- semantic slide sections76- a viewport-safe CSS base from `STYLE_PRESETS.md`77- CSS custom properties for theme values78- a presentation controller class for keyboard, wheel, and touch navigation79- Intersection Observer for reveal animations80- reduced-motion support8182### 5. Enforce Viewport Fit8384Treat this as a hard gate.8586Rules:8788- every `.slide` must use `height: 100vh; height: 100dvh; overflow: hidden;`89- all type and spacing must scale with `clamp()`90- when content does not fit, split into multiple slides91- never solve overflow by shrinking text below readable sizes92- never allow scrollbars inside a slide9394Use the density limits and mandatory CSS block in `STYLE_PRESETS.md`.9596### 6. Validate9798Check the finished deck at these sizes:99100- 1920x1080101- 1280x720102- 768x1024103- 375x667104- 667x375105106If browser automation is available, use it to verify no slide overflows and that keyboard navigation works.107108### 7. Deliver109110At handoff:111112- delete temporary preview files unless the user wants to keep them113- open the deck with the platform-appropriate opener when useful114- summarize file path, preset used, slide count, and easy theme customization points115116Use the correct opener for the current OS:117118- macOS: `open file.html`119- Linux: `xdg-open file.html`120- Windows: `start "" file.html`121122## PPT / PPTX Conversion123124For PowerPoint conversion:1251261. Prefer `python3` with `python-pptx` to extract text, images, and notes.1272. If `python-pptx` is unavailable, ask whether to install it or fall back to a manual/export-based workflow.1283. Preserve slide order, speaker notes, and extracted assets.1294. After extraction, run the same style-selection workflow as a new presentation.130131Keep conversion cross-platform. Do not rely on macOS-only tools when Python can do the job.132133## Implementation Requirements134135### HTML / CSS136137- Use inline CSS and JS unless the user explicitly wants a multi-file project.138- Fonts may come from Google Fonts or Fontshare.139- Prefer atmospheric backgrounds, strong type hierarchy, and a clear visual direction.140- Use abstract shapes, gradients, grids, noise, and geometry rather than illustrations.141142### JavaScript143144Include:145146- keyboard navigation147- touch / swipe navigation148- mouse wheel navigation149- progress indicator or slide index150- reveal-on-enter animation triggers151152### Accessibility153154- use semantic structure (`main`, `section`, `nav`)155- keep contrast readable156- support keyboard-only navigation157- respect `prefers-reduced-motion`158159## Content Density Limits160161Use these maxima unless the user explicitly asks for denser slides and readability still holds:162163| Slide type | Limit |164| ------------ | --------------------------------------------- |165| Title | 1 heading + 1 subtitle + optional tagline |166| Content | 1 heading + 4-6 bullets or 2 short paragraphs |167| Feature grid | 6 cards max |168| Code | 8-10 lines max |169| Quote | 1 quote + attribution |170| Image | 1 image constrained by viewport |171172## Anti-Patterns173174- generic startup gradients with no visual identity175- system-font decks unless intentionally editorial176- long bullet walls177- code blocks that need scrolling178- fixed-height content boxes that break on short screens179- invalid negated CSS functions like `-clamp(...)`180181## Related ECC Skills182183- `frontend-patterns` for component and interaction patterns around the deck184- `liquid-glass-design` when a presentation intentionally borrows Apple glass aesthetics185- `e2e-testing` if you need automated browser verification for the final deck186187## Deliverable Checklist188189- presentation runs from a local file in a browser190- every slide fits the viewport without scrolling191- style is distinctive and intentional192- animation is meaningful, not noisy193- reduced motion is respected194- file paths and customization points are explained at handoff