better-scroll 滚动插件

旧街凉风 提交于 2020-01-06 15:13:32

安装:

npm install better-scroll --save

  

html结构:

<div class="wrapper">
  <ul class="content">
    <li>...</li>
    <li>...</li>
    ...
  </ul>
  <!-- you can put some other DOMs here, it won't affect the scrolling
</div>

  

引入及使用:

import BScroll from '@better-scroll/core'  //引用
let wrapper = document.querySelector('.wrapper') //获取dom
let scroll = new BScroll(wrapper)   //创建实例

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!