收藏
回答

小程序可以强制横屏吗?

请问小程序目前是否支持强制横屏?需要强制用户横屏观看

不是自适应

pageOrientation 不太合适


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

2 个回答

  • 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-11-29

    "pageOrientation":"landscape"

    这就是强制,它不合适的原因?

    2021-11-29
    有用
    回复 4
    • Bug Engineer
      Bug Engineer
      2021-11-30
      如果手机打开方向锁定 这个就不适用了吧。。
      2021-11-30
      回复
    • 老张
      老张
      2021-11-30回复Bug Engineer
      在回复前,你经过验证了吗?不要随手就回答。
      2021-11-30
      回复
    • Lloyd
      Lloyd
      2021-12-24
      我设置了landscape,进入页面还是竖屏的
      2021-12-24
      回复
    • 老张
      老张
      2021-12-24回复Lloyd
      resizable:true设置了吗?
      2021-12-24
      回复
登录 后发表内容