spemer / vue-scroll-progress

πŸŽ‰ Page scroll progress bar component for @vuejs

Home Page:https://spemer.github.io/vue-scroll-progress/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue-scroll-progress πŸŽ‰

Simple Vue.js plugin for page scroll progress bar

vue2 Version Gzipsize Awesome License Hits stargazers

Live Demo

Installation

npm i vue-scroll-progress --save
yarn add vue-scroll-progress

CDNs

jsDelivr, UNPKG, bundle.run

Usage

main.js

// YourComponent.vue or main.js for global usage
import Vue from "vue";
import VueScrollProgress from "vue-scroll-progress";

Vue.use(VueScrollProgress);

Use in component

<!-- .vue template -->
<template>
  <VueScrollProgress></VueScrollProgress>
</template>

Set progress bar style, and customize as you want(Optional)

<style>
/* play with some lines below */
#progress-container-el {
  /* background */
  background-color: transparent !important;
  top: calc(100% - 4px) !important; /* remove if Vue 3.x */
}
#progress-el {
  /* progress bar */
  background-color: red !important;
}
</style>

Author

Hyouk Seo(Spemer)

About

πŸŽ‰ Page scroll progress bar component for @vuejs

https://spemer.github.io/vue-scroll-progress/

License:MIT License


Languages

Language:Shell 53.1%Language:JavaScript 46.9%