收藏
回答

怎么在大小不一的设备上做到适配呢?

真机效果

开发者工具效果

想要的效果是弹窗底部和屏幕底部紧贴着

// 头像、昵称弹窗
    show_modal: function (params) {
        var that = this;
        var show_modal = that.data.show_modal;
        var result = that.data.result;

        var animation = wx.createAnimation({
            duration: 500,
            timingFunction: 'ease'
        });

        if (show_modal == true) {
            show_modal = false;
            animation.translateY('0%').step()
        } else {
            show_modal = true;
            animation.translateY('-120%').step()
        }

        that.setData({
            show_modal,
            nickname: result['nickname'],
            ani: animation.export()
        })
    },

谢谢大佬

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

2 个回答

登录 后发表内容