美文网首页
apicloud学习手册

apicloud学习手册

作者: 塔塔七 | 来源:发表于2020-01-22 16:46 被阅读0次

    1、apicloud下拉刷新与swiper滑动冲突解决

    • 在swiper插件触碰起点屏蔽apicloud的页面弹动事件,触碰终点将其恢复
    let pic_swiper = new Swiper ('.swiper-container', {
              pagination: {
                el: '.swiper-pagination',
              },
              autoplay:true,
              on: {
                  touchStart: function(event){
                    api.setFrameAttr({
                        name: api.frameName,
                        bounces: false
                    });
                  },
                  touchEnd: function(event){
                    api.setFrameAttr({
                      name: api.frameName,
                      bounces: true
                    });
                  },
                }
            }) 
    

    swiper滑动事件参考文档:点开详情
    apicloud弹动开关参考文档:点击详情

    相关文章

      网友评论

          本文标题:apicloud学习手册

          本文链接:https://www.haomeiwen.com/subject/xztpzctx.html