New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

balm-scroll

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

balm-scroll

Smooth scrolling for Vue.js

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

Balm Scroll

What is BalmScroll?

iScroll based, smooth scrolling for Vue.js

Demos & Documentation

Quick Start

0. Requirement

  • BalmJS(Recommended) or other toolchains
  • Vue.js@2.1.0+

1. Install

npm i --save balm-scroll
# OR
yarn add balm-scroll

2. Usage

2.1 Css (Edit my-project/app/styles/global/_vendor.scss)
@import 'node_modules/balm-scroll/dist/balm-scroll.scss';
2.2 Js (Edit my-project/app/scripts/main.js)
import Vue from 'vue';
import BalmScroll from 'balm-scroll';

Vue.use(BalmScroll);
2.3 Vue (Edit a vue component: my-project/app/scripts/views/demos/hello.vue)
<template>
  <ui-scroll :options="options">
    <!-- Content -->
  </ui-scroll>
</template>
export default {
  data() {
    return {
      options: {
        mouseWheel: true
      }
    };
  }
};
2.4 Default css sprites

Download pull-icon@2x.png and extract to /path/to/my-project/app/images.

3. Configuring

3.1 The many faces of iScroll
  • <ui-scroll>
  • <ui-scroll-lite>
  • <ui-scroll-probe>
  • <ui-scroll-zoom>
  • <ui-scroll-infinite>

Tips: You can pick one component that better suits your need

3.2 Options

4. Props, Slots and Events

4.1 Props
NameTypeDefaultDescription
optionsobject{}iScroll options
pullDownLabel ⚠️string'Pull down to refresh'Pull down label
pullUpLabel ⚠️string'Pull up to load more'Pull up label
releaseLabel ⚠️string'Release to update'Release label
loadingLabel ⚠️string'Loading...'Loading label
pullDownY ⚠️number5Pull down Y position
pullAction ⚠️functionnullScroll action
pullDownActionfunctionnullPull down action
pullUpActionfunctionnullPull up action
refreshTimeoutnumber1000Refresh timeout
excludesarrayExcludes for touchmove event preventDefault
scrollEnabled ⚠️booleantrueLoad more data controls

⚠️: Applicable only for the <ui-scroll-probe>

  • Special function
<ui-scroll ref="iScroll"></ui-scroll>
export default {
  methods: {
    loadMore() {
      // ...
      this.$refs.iScroll.refresh();
    }
  }
};
4.2 Slots
NameDescription
defaultThe default slot holds the scroll child components
pullDownIcon ⚠️Custom pull down icon
pullDownLabel ⚠️Custom pull down label
pullUpIcon ⚠️Custom pull up icon
pullUpLabel ⚠️Custom pull up label

⚠️: Applicable only for the <ui-scroll-probe>

Special Thanks to

Keywords

FAQs

Package last updated on 13 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc