vue使用Better-scroll模拟原生滚动效果

vue使用Better-scroll模拟原生滚动效果_第1张图片
在开发诸如此类有滚动区域的页面时,虽然页面外层盒子自动被撑开也可以实现滚动效果,但是滚动难免显得有些生硬。
我们可以使用 better-scroll 这个插件模拟原生滚动效果,使滚动看起来更柔和一些。

  • 安装better-scroll
npm install better-scroll --save
  • 在项目中引入better-scroll
import BScroll from 'better-scroll'
  • 调整页面元素结构
    使用better-scroll需要满足一下格式的dom结构,即内容外包裹两层元素。
    vue使用Better-scroll模拟原生滚动效果_第2张图片
    vue使用Better-scroll模拟原生滚动效果_第3张图片
  • 创建better-scroll实例
    vue使用Better-scroll模拟原生滚动效果_第4张图片
this.scroll = new BScroll(this.$refs.wrapper)
$refs的使用:
$refs 代表页面中所有引用,wrapper是引用名称。
如果是加在标签上,通过this.$refs.wrapper就可以获取到引用名为wrapper的这个标签的dom节点,通过innerHtml或者innderText就可以获得标签内容。
如果这是个组件,this.$refs.wrapper 获取到的就是这个组件的引用。

你可能感兴趣的:(vue)