Back to Better Scroll

@better-scroll/indicators

packages/indicators/README_zh-CN.md

2.5.1487 B
Original Source

@better-scroll/indicators

指示器,可用来实现放大镜、视觉滚动等效果。

使用

js
import BScroll from '@better-scroll/core'
import Indicators from '@better-scroll/indicators'
BScroll.use(Indicators)

const bs = new BScroll('.wrapper', {
  indicators: [
    relationElement: someHTMLElement
  ]
})
ts
interface IndicatorOptions {
  interactive?: boolean
  ratio?: Ratio
  relationElementHandleElementIndex?: number
  relationElement: HTMLElement
}