A reading progress bar plugin for vuepress

A reading progress bar plugin for vuepress
a reading progress bar plugin for vuepress. vue vuepress plugin reading-progress reading progress

vuepress-plugin-reading-progress

a reading progress bar plugin for vuepress

vuepress-plugin-reading-progress


Installation

source-shell
yarn add vuepress-plugin-reading-progress
# or
npm i vuepress-plugin-reading-progress

Usage

source-js
module.exports = {
  plugins: [
    'reading-progress'
  ]
}

Vuepress documentation

Options

readingDir

  • Type: null, string, array, object, RegExp
  • Default: null

Specify regularPath that display reading progress bar

example

source-js
{
  readingDir: 'posts'
  // or
  readingDir: ['posts1', 'posts2', 'posts3']
  // or { dir: fixed }
  readingDir: {
    posts1: 'top',
    posts2: 'bottom',
    posts3: 'left'
  }
  // or RegExp
  readingDir: /[^/]+$/ // exclude regularPath end with `/`
  // or
  readingDir: new RegExp('[^/]+$')
}

fixed

  • Type: string
  • Default: top

support top, bottom, left, right

set position for reading progress bar

Front matter

Change the reading progress bar display of the current page by use readingShow

  • Type: string, boolean
  • Default: null
  • one of top, bottom, left, right, true, false
source-lisp
---
readingShow: false
---

Style

If you wish to apply simple color overrides to the styling

+- .vuepress
  +- styles
    +- palette.styl

source-stylus
$readingBgColor = transparent
$readingZIndex = 1000
$readingSize = 3px
$readingProgressColor = $accentColor
$readingProgressImage = none

example

source-stylus
$readingProgressImage = linear-gradient(-120deg, #E50743 0%, #F9870F 15%, #E8ED30 30%, #3FA62E 45%, #3BB4D7 60%, #2F4D9E 75%, #71378A 80%)

License

MIT

Keywords

vue vuepress plugin reading-progress reading progress

Suggest:

Top 4 Programming Languages to Learn In 2019

Introduction to Functional Programming in Python

Dart Programming Tutorial - Full Course

There Is No Best Programming Language

Top 4 Programming Languages to Learn in 2019 to Get a Job

How you can build your documentation with VuePress