Make scene force landscape mode, Click position error

I use CSS to force the landscape model, but I found that there is a problem with the direction of drag?

    html,
      body {
        overflow: hidden;
        width: 500px;
        height: 800px;
        margin: 0;
        padding: 0;
      }
      #renderCanvas {
    
        position: fixed;
        width: 800px;
        height: 500px;
        top: 0;
        left: 0;
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        transform: rotate(90deg) translateY(-100%);
      }

this is a demo

http://www.3dyzt.com/temp/index.html

If I understood well,
they are related

Short answer, not supported yet unfortunately

1 Like

thanks,I fand a easy way to solution,it is use iframe

1 Like