微信小程序横屏适配问题
发布于 6 年前 作者 jing26 10753 次浏览 来自 问答
  • 小程序横屏后使用wx.getSystemInfo()获取到的宽高会出现变化,导致页面样式怪异不稳定

onLoad: function (options) {

    wx.getSystemInfo({

        success: function(res) {

        console.log(res)

        },

    })

},

回到顶部