cool-vue-scrollbar

0.1.3 • Public • Published

scroll-bar

自定义PC端滚动条,可以设置滚动条颜色,宽度,边框弧度半径等。

1. 安装 Installation

npm install --save cool-vue-scrollbar

2. 使用 Usage

main.js文件 全局

import coolscrollBar from 'cool-vue-scrollbar'
Vue.use(coolscrollBar)

组件中:

Example

<template>
  <div id="app">
    <scroll-bar class="wrapper" :options="options">
      <div class="inner">
       <div style="height:800px"></div>
      </div>
     </scroll-bar>
  </div>
</template>

<script>

export default {
  name: 'App',
  data(){
    return {
      options: {
        innerStyle:{ // 这里是滑块的样式 
          backgroundColor: 'red',
          borderRadius: '5px',
          width: '5px'
        },
        outStyle: { //包裹滑块的容器样式
        width: '5px',
        borderRadius: '5px',
        backgroundColor: '#fff'
      },
      level :80  //鼠标滚动时滑块移动的级别,默认是20px
      },
      
    }
  },
  methods: {
  }
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
.wrapper{
  width:200px;
  height:200px;
  border:1px solid rgb(94, 126, 94);
  margin: 0 auto;
}
.inner{
  background-color: blueviolet;
  width:100px;
  border: 3px solid pink;
}
</style>

Readme

Keywords

Package Sidebar

Install

npm i cool-vue-scrollbar

Weekly Downloads

1

Version

0.1.3

License

ISC

Unpacked Size

14.4 kB

Total Files

9

Last publish

Collaborators

  • melodypond