rspress-plugin-back-to-top
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

rspress-plugin-back-to-top NPM Version

Rspress plugin to add a back-to-top button when scrolling reaches a certain distance.

Usage

npm i rspress-plugin-back-to-top
pnpm add rspress-plugin-back-to-top
import * as path from 'path';
import { defineConfig } from 'rspress/config';
import back2Top from 'rspress-plugin-back-to-top';

export default defineConfig({
  root: path.join(__dirname, 'docs'),
  plugins: [back2Top()],
});

Configure

threshold

Distance from the top of the page to show the back-to-top button.

  • Type: number
  • Default: 300
import * as path from 'path';
import { defineConfig } from 'rspress/config';
import back2Top from 'rspress-plugin-back-to-top';

export default defineConfig({
  root: path.join(__dirname, 'docs'),
  plugins: [back2Top({
    threshold: 500,
  })],
});

Package Sidebar

Install

npm i rspress-plugin-back-to-top

Weekly Downloads

0

Version

0.3.0

License

MIT

Unpacked Size

6.07 kB

Total Files

7

Last publish

Collaborators

  • linbudu