這才是我想要的彩虹進度條-[vue-ins-progress-bar]

MeloAlright發表於2018-07-10

想在 vue 專案中擁有 instagram 那種絢麗的彩虹進度條? 不如試試這個

slogan

vue-ins-progress-bar

a vue component of ins-style progress bar

一款 ins 風格的 vue 進度條元件

Demo

Live Demo

Install

npm i vue-ins-progress-bar   
複製程式碼

Usage

main.js

import VueInsProgressBar from 'vue-ins-progress-bar'

const options = {
  position: 'fixed',
  show: true,
  height: '3px'
}

Vue.use(VueInsProgressBar, options)
複製程式碼

App.vue

<template>
  <div id="app">
    <router-view/>
    <vue-ins-progress-bar></vue-ins-progress-bar>
  </div>
</template>

<script>
export default {
  name: 'App',
  mounted () {
    this.$insProgress.finish()
  },
  created () {
    this.$insProgress.start()

    this.$router.beforeEach((to, from, next) => {
      this.$insProgress.start()
      next()
    })

    this.$router.afterEach((to, from) => {
      this.$insProgress.finish()
    })
  }
}
</script>
複製程式碼

APIs

this.$insProgress.start() // start the loading
複製程式碼
this.$insProgress.finish() // finish the loading
複製程式碼
this.$insProgress.height(4) // resize the height of loading bar to 4px
複製程式碼

Source

Repository: vue-ins-progress-bar

Author: @meloalright

License

MIT

相關文章