1、在项目中发现个问题,用better-scroll实现的轮播图和页面滚动条俩个效果一起出现的时候,当鼠标或手指放在轮播图位置的时候,上下滚动的时候,页面滚动条不动

发现最新的版本就会出这个问题,就是官网的例子中也一样,还有cube-ui中的轮播图

https://ustbhuangyi.github.io/better-scroll/#/examples/slide/en

解决办法是:

第一种:轮播图用其他的,不要用better-sacroll,比如可以使用vant里面的轮播图效果https://youzan.github.io/vant/#/zh-CN/swipe。页面滚动效果用better-sacroll的

这有个问题:如果我们的轮播图可以点击跳转,那么在滑动的时候,会触发跳转效果。这时我们就需要做处理,比如给跳转加一个时间判断(感觉这样挺麻烦的)

第二种:不要用新版本的better-scroll,可以使用0.4.0版本的

第三种: 也是现阶段我认为最好的

在于scrollX平级的地方,不要stopPropagation这个属性,如果还不行,就加一个eventPassthrough: 'vertical'

示例代码:

  1. <template>
  2. <div class="slider" ref="slide">
  3. <div class="slider-group" ref="slideGroup">
  4. <slot>
  5. </slot>
  6. </div>
  7. <div v-if="showDot" class="dots" :class="{dots_center : (dots_position === 0),dots_left : (dots_position === 1),dots_right : (dots_position === 2)}">
  8. <span class="dot" :class="{active: currentPageIndex === index }" v-for="(item, index) in dots" :key="index"></span>
  9. </div>
  10. </div>
  11. </template>
  12.  
  13. <script type="text/ecmascript-6">
  14. import {addClass} from 'common/js/dom.js'
  15. import BScroll from 'better-scroll'
  16. import {mapMutations} from 'vuex'
  17.  
  18. export default {
  19. name: 'slider',
  20. props: {
  21. autoPlay: { // 是否开启自动滚动
  22. type: Boolean,
  23. default: true
  24. },
  25. loop: { // 是否开启循环滚动
  26. type: Boolean,
  27. default: true
  28. },
  29. interval: { // 滚动间隔时间
  30. type: Number,
  31. default:
  32. },
  33. showDot: {
  34. type: Boolean,
  35. default: true
  36. },
  37. click: {
  38. type: Boolean,
  39. default: true
  40. },
  41. threshold: {
  42. type: Number,
  43. default: 0.3
  44. },
  45. speed: {
  46. type: Number,
  47. default:
  48. },
  49. dots_position: { // 焦点的位置 0 中间 1 左边 2 右边
  50. type: Number,
  51. default:
  52. },
  53. showItemIndex: {
  54. type: Number,
  55. defalut:
  56. }
  57. },
  58. data() {
  59. return {
  60. dots: [],
  61. currentPageIndex:
  62. }
  63. },
  64. mounted() {
  65. this.update()
  66. window.addEventListener('resize', () => {
  67. if (!this.slide || !this.slide.enabled) {
  68. return
  69. }
  70. clearTimeout(this.resizeTimer)
  71. this.resizeTimer = setTimeout(() => {
  72. if (this.slide.isInTransition) {
  73. this._onScrollEnd()
  74. } else {
  75. if (this.autoPlay) {
  76. this._play()
  77. }
  78. }
  79. this.refresh()
  80. }, )
  81. })
  82. },
  83. activated() {
  84. if (!this.slide) {
  85. return
  86. }
  87. this.slide.enable()
  88. let pageIndex = this.slide.getCurrentPage().pageX
  89. this.slide.goToPage(pageIndex, , )
  90. this.currentPageIndex = pageIndex
  91. if (this.autoPlay) {
  92. this._play()
  93. }
  94. },
  95. deactivated() {
  96. this.slide.disable()
  97. clearTimeout(this.timer)
  98. },
  99. beforeDestroy() {
  100. this.slide.disable()
  101. clearTimeout(this.timer)
  102. },
  103. methods: {
  104. update() {
  105. if (this.slide) {
  106. this.slide.destroy()
  107. }
  108. this.$nextTick(() => {
  109. this.init()
  110. })
  111. },
  112. refresh() {
  113. this._setSlideWidth(true)
  114. this.slide.refresh()
  115. },
  116. prev() {
  117. this.slide.prev()
  118. },
  119. next() {
  120. this.slide.next()
  121. },
  122. init() {
  123. clearTimeout(this.timer)
  124. this.currentPageIndex =
  125. this._setSlideWidth()
  126. if (this.showDot) {
  127. this._initDots()
  128. }
  129. this._initSlide()
  130.  
  131. if (this.autoPlay) {
  132. this._play()
  133. }
  134. },
  135. _setSlideWidth(isResize) {
  136. this.children = this.$refs.slideGroup.children
  137.  
  138. let width =
  139. let slideWidth = this.$refs.slide.clientWidth
  140. for (let i = ; i < this.children.length; i++) {
  141. let child = this.children[i]
  142. addClass(child, 'slider-item')
  143.  
  144. child.style.width = slideWidth + 'px'
  145. width += slideWidth
  146. }
  147. if (this.loop && !isResize) {
  148. width += * slideWidth
  149. }
  150. this.$refs.slideGroup.style.width = width + 'px'
  151. },
  152. _initSlide() {
  153. this.slide = new BScroll(this.$refs.slide, {
  154. scrollX: true,
  155. scrollY: false,
  156. eventPassthrough: 'vertical',
  157. momentum: false,
  158. snap: {
  159. loop: this.loop,
  160. threshold: this.threshold,
  161. speed: this.speed
  162. },
  163. bounce: false,
  164. click: this.click,
  165. freeScroll: true
  166. })
  167.  
  168. this.slide.on('scrollEnd', this._onScrollEnd)
  169.  
  170. this.slide.on('touchEnd', () => {
  171. if (this.autoPlay) {
  172. this._play()
  173. }
  174. })
  175.  
  176. this.slide.on('beforeScrollStart', () => {
  177. if (this.autoPlay) {
  178. clearTimeout(this.timer)
  179. }
  180. })
  181. },
  182. _onScrollEnd() {
  183. let pageIndex = this.slide.getCurrentPage().pageX
  184. this.currentPageIndex = pageIndex
  185. if (this.autoPlay) {
  186. this._play()
  187. } else {
  188. // 触发回调,将当前index值作为参数返回到store中
  189. this.saveSIndex(this.currentPageIndex + )
  190. }
  191. },
  192. ...mapMutations({
  193. saveSIndex: 'SET_SLIDERINDEX'
  194. }),
  195. _initDots() {
  196. this.dots = new Array(this.children.length)
  197. },
  198. _play() {
  199. clearTimeout(this.timer)
  200. this.timer = setTimeout(() => {
  201. this.slide.next()
  202. }, this.interval)
  203. }
  204. },
  205. watch: {
  206. loop() {
  207. this.update()
  208. },
  209. autoPlay() {
  210. this.update()
  211. },
  212. speed() {
  213. this.update()
  214. },
  215. threshold() {
  216. this.update()
  217. },
  218. showItemIndex (index) {
  219. this.slide.goToPage(index, , )
  220. }
  221. }
  222. }
  223. </script>
  224.  
  225. <style lang="less" rel="stylesheet/less" type="text/less">
  226. @import "../../common/less/variable";
  227.  
  228. .slider{
  229. min-height: 1px;
  230. }
  231. .slider-group{
  232. position: relative;
  233. overflow: hidden;
  234. white-space: nowrap;
  235. }
  236. .slider-item{
  237. float: left;
  238. box-sizing: border-box;
  239. overflow: hidden;
  240. text-align: center;
  241. }
  242. .slider-item a{
  243. display: block;
  244. width: %;
  245. overflow: hidden;
  246. text-decoration: none;
  247. }
  248. .slider-item img{
  249. display: block;
  250. width: %;
  251. }
  252. .dots{
  253. position: absolute;
  254. bottom: 30px;
  255. transform: translateZ(1px);
  256. font-size: ;
  257. }
  258. .dots_center{
  259. left: ;
  260. right: ;
  261. }
  262. .dots_left{
  263. left: 30px;
  264. }
  265. .dots_right{
  266. right: 30px;
  267. }
  268. .dot{
  269. display: inline-block;
  270. margin: 8px;
  271. width: 10px;
  272. height: 10px;
  273. border: 2px solid #f8fafc;
  274. border-radius: %;
  275. background: rgba(, , , 0.5);
  276. }
  277. .dot.active{
  278. background: #398ed1;
  279. }
  280. </style>

better-scroll项目中遇到的问题的更多相关文章

  1. sessionStorage在项目中的应用

    1. 本地存储 Cookie(局限性):用户可以禁用cookie,最多只能存储4kb,cookie有过期时间的(一般我们设置的时间最长1个月,用户使用杀毒软件也可以清除我们的cookie)LocalS ...

  2. java使用elasticsearch进行模糊查询-已在项目中实际应用

    java使用elasticsearch进行模糊查询 使用环境上篇文章本人已书写过,需要maven坐标,ES连接工具类的请看上一篇文章,以下是内容是笔者在真实项目中运用总结而产生,并写的是主要方法和思路 ...

  3. vue项目中遇到的一些问题

    或访问:https://github.com/littleHiuman/experiences-about-vue  欢迎补充! vuex 状态 vue-cli 命令行 vue vue vue-rou ...

  4. SSH 项目中 使用websocket 实现网页聊天功能

    参考文章  :java使用websocket,并且获取HttpSession,源码分析    http://www.cnblogs.com/zhuxiaojie/p/6238826.html 1.在项 ...

  5. Vue项目中使用better-scroll

    当 better-scroll 遇见 Vue   在我们日常的移动端项目开发中,处理滚动列表是再常见不过的需求了. 以滴滴为例,可以是这样竖向滚动的列表,如图所示: 也可以是横向滚动的导航栏,如图所示 ...

  6. better-scroll在vue项目中的使用

    1.准备工作 在项目中安装better-scroll: npm install --save better-scroll 组件中引入插件 import BScroll from "bette ...

  7. vue项目中,单页图片过多,使用懒加载

    最近做项目,一页图片很多,加载的时候效果很差. 通过学习借鉴其他大神的方法,使用了插件vue-lazyload,使用这个插件,界面更美观了,加载的效果好起来. 安装 npm i vue-lazyloa ...

  8. VS项目中使用Nuget还原包后编译生产还一直报错?

    Nuget官网下载Nuget项目包的命令地址:https://www.nuget.org/packages 今天就遇到一个比较奇葩的问题,折腾了很久终于搞定了: 问题是这样的:我的解决方案原本是好好的 ...

  9. ABP项目中使用Swagger生成动态WebAPI

    本文是根据角落的白板报的<使用ABP实现SwaggerUI,生成动态webapi>一文的学习总结,感谢原文作者角落的白板报. 1 安装Swashbuckle.core 1.1 选择WebA ...

  10. iOS 之项目中遇到的问题总结

    昨天去一家公司面试,面试官问了我在项目开发中遇到过哪些问题,是什么引起的,怎样解决的? 当时由于有点小紧张只说出了一两点,现在就来好好总结一下. 问题: 1.两表联动 所谓的两表联动就是有左右两个表格 ...

随机推荐

  1. ASP.NET Web API 2 媒体类型格式化程序

    Ø  简介 在之前的ASP.NET Web API 2 消息处理管道文章中有提到,在 Web API 的生命周期中,还包含比较中要的一部分,就是媒体类型格式化程序,该程序主要用于处理 Web API ...

  2. Select 子句后的别名,在where条件中不能使用

    SELECT * FROM student WHERE (条件) 执行顺序,先执行FROM 子句,然后执行WHERE 子句,最后执行SELECT 所以Select 子句后的别名,在where条件中不能 ...

  3. 2017CCPC秦皇岛 M题Safest Buildings&&ZOJ3993【复杂模拟】

    题意: 给出两个半径R,r,R表示第一次的大圈半径,r表示第二次的小圈半径.第一次大圈的圆心位于(0,0),第二次小圈的圆心未知,但在大圈内,给你一个n,然后给出n个屋子的位置,问这些屋子中,第二次在 ...

  4. Educational Codeforces Round 47 (Rated for Div. 2)E.Intercity Travelling

    题目链接 大意:一段旅途长度N,中间可能存在N-1个休息站,连续走k长度时,疲劳值为a1+a2+...+aka_1+a_2+...+a_ka1​+a2​+...+ak​,休息后a1a_1a1​开始计, ...

  5. windows基本命令大全

    1.DOS常用命令详解 dir 列文件名 deltree 删除目录树 cls 清屏 cd 改变当前目录. copy 拷贝文件 diskcopy 复制磁盘 del 删除文件 format 格式化磁盘. ...

  6. linqjs

    Project Descriptionlinq.js - LINQ for JavaScript Features implement all .NET 4.0 methods and many ex ...

  7. MGR架构~ 整体性能架构的调优

    一 简介:MGR集群架构的调优二 过程:本文将从各个角度来具体阐述下三 硬件    1 硬件选择相同配置的服务器,磁盘,内存,cpu性能越高越好四 网络    1 0丢包和最好万兆网卡五 MGR本身  ...

  8. 鉴权完成后如何拿到SpringSocial的用户信息

    ⒈ package cn.coreqi.social.config; import org.springframework.beans.factory.annotation.Autowired; im ...

  9. curl的http上传文件代码

    int http_post_file(const char *url, const char *user, const char *pwd, const char *filename){    ass ...

  10. 题解-UOJ284 快乐游戏鸡

    Problem uoj 题意大意: 一棵树,点权\(w_i\),每次玩家可以在树上行走,一条边需要\(1\)的时间,只能往儿子走.每次游戏需要从\(s\)到\(t\). 玩家有一个总死亡次数,初始为\ ...