| theme | ./ |
|---|---|
| layout | cover |
| background | /background.jpg |
Presentation slides for developers
Press Space for next page
Slidev is a slides maker and presenter designed for developers, consist of the following features
- 📝 Text-based - focus on the content with Markdown, and then style them later
- 🎨 Themable - theme can be shared and used with npm packages
- 🧑💻 Developer Friendly - code highlighting, live coding with autocompletion
- 🤹 Interactive - embedding Vue components to enhance your expressions
- 🎥 Recording - built-in recording and camera view
- 📤 Portable - export into PDF, PNGs, or even a hostable SPA
- 🛠 Hackable - anything possible on a webpage
Read more about Why Slidev?
Describe the most important steps of the task here:
- First go there
- One
- Two
- Then do this
- Finally..
::left::
- Left
- Awesome
::right::
console.log("With some code"); console.log("With some code"); console.log("With some code");inline code
Bliblablub
Hover on the bottom-left corner to see the navigation's controls panel
| space / tab / right | next animation or slide |
| left / shiftspace | previous animation or slide |
| up | previous slide |
| down | next slide |
- This
- are
- bullet points.
- This
- is
- an enumerated list.
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Row 1 | Row 1 | Row 1 |
| Row 2 | Row 2 | Row 2 |
| Row 3 | Row 3 | Row 3 |
| Row 4 | Row 4 | Row 4 |
layout: image-right image: 'https://images.unsplash.com/photo-1527095655060-4026c4af2b25?q=80&w=1740'
Use code snippets and get the highlighting directly!
interface User {
id: number
firstName: string
lastName: string
role: string
}
function updateUser(id: number, update: Partial<User>) {
const user = getUser(id)
const newUser = { ...user, ...update }
saveUser(id, newUser)
}<QRCode value="https://openscript.ch" style="width: 200px" />