1.1.0 • Published 1 month ago

slidev-component-progress v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

slidev-component-progress

NPM version

Progress component for Slidev Slidev.
Shows a progress bar that represents the completed percentage of the presentation.

Progress demo

Installation

npm i slidev-component-progress

Configuration

Define this package into your slidev addons.

In your slides metadata (using frontmatter):

---
addons:
  - slidev-component-progress
---

Or in your package.json:

{
  "slidev": {
    "addons": [
      "slidev-component-progress"
    ]
  }
}

Usage

Create a ./global-top.vue file in your Slidev project and use the component:

<template>
  <Progress level="2"/>
</template>

Components

Progress

Component that displays the slides progress:

<Progress level="2"/>

Parameters:

  • activeColor (type: string, default: '#ffffff' (light) or '#000000' (dark)): The color of the active item
  • barColor (type: string): The color of the progress bar, by default, it will use the --slidev-theme-primary CSS variable
  • height (type: string): Height of the progress bar, by default it is the minimum possible height depending of the level
  • level (type: number | string, default: 1): Title level to show in the progress bar with informations from the Table Of Content
  • opacity (type: number | string, default: 0.5): Opacity of the progress bar when not hovered
  • position (type: 'top' | bottom', default: 'top'): Position of the progress bar in the slide
  • strokeColor (type: string, default: '#000000'(light) or '#ffffff' (dark)): The stroke color for the items
  • thickness (type: string, default: 2px)
  • transitionDuration (type: string, default: 200ms): CSS transition durations
1.1.0

1 month ago

1.0.2

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

2 years ago

0.5.1

2 years ago

0.5.0

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.4.2

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago

0.0.0

2 years ago