收藏
回答

onPageScroll在IOS真机上不生效但是在模拟器和安装真机都是正常显示有解决方法?

  expandButton: function () {

        this.setData({

            'buttonStyle': 'right: 2%;'

        });

    },

    collapseButton: function () {

        this.setData({

            'buttonStyle': 'right: -8%;'

        });

    },

    //监听页面滚动

    onPageScroll: function (e) {

        if (e.scrollTop > this.data.lastScrollTop{

            // scrolling down

            this.expandButton();

        } else {

            // scrolling up

            this.collapseButton();

        }

        this.setData({

            lastScrollTop: e.scrollTop

        });

    },




回答关注问题邀请回答
收藏

1 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    10-12

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    10-12
    有用
    回复
登录 后发表内容