美文网首页
Taro 微信小程序横屏

Taro 微信小程序横屏

作者: zhenghongmo | 来源:发表于2024-06-18 17:07 被阅读0次

    单个页面横屏pageOrientation

    // 在index.config.ts中设置
    {
        "pageOrientation": "landspace"
    }
    

    在页面中调用函数设置

    // 横屏
     Taro.setPageOrientation({
          orientation: 'landspace',
      });
    // 竖屏
     Taro.setPageOrientation({
          orientation: 'portrait',
      });
    
    

    整个小程序设置为横向,只要在 app.config.ts 中添加配置:

    "window" : {
        "pageOrientation" : "landscape"
    },
    

    相关文章

      网友评论

          本文标题:Taro 微信小程序横屏

          本文链接:https://www.haomeiwen.com/subject/sswfcjtx.html