收藏
回答

小程序设置横屏?

小程序设置横屏?

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

3 个回答

  • Shoulder
    Shoulder
    2022-01-04
    注意:官方文档并没有列出此api。请谨慎考虑使用,建议跳转新页面json设置"pageOrientation""landscape"
    

      setPageOrientation: function(){

        var that = this;    

        wx.setPageOrientation({

          orientation: that.data.PageOrientation,  // landscape 横屏; portrait 竖屏

          complete: function(res){

            console.log(" 横屏回调 -- ",res);

            if(that.data.PageOrientation == "landscape"){

              that.data.PageOrientation = "portrait";

            }else{

              that.data.PageOrientation = "landscape";

            }

            

          }

        })

      },


    2022-01-04
    有用
    回复
  • 李亚超
    李亚超
    2021-12-02

    app.json 的 window 段中设置"pageOrientation":"landscap

    2021-12-02
    有用
    回复
  • 中式小面包
    中式小面包
    2021-12-02

    https://developers.weixin.qq.com/miniprogram/dev/framework/view/resizable.html

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