0

我正在开发一个全屏视频网站。当用户在智能手机中访问该网站时,我想将页面方向更改为横向模式。我尝试使用 css 媒体方向但没有锻炼。

Pease 帮助我使用 javascript 来完成这项工作。

4

3 回答 3

0

使用 css 旋转页面怎么样?

-webkit-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-ms-transform:rotate(-90deg);
-o-transform:rotate(-90deg);
transform:rotate(-90deg);
于 2013-10-08T04:21:46.227 回答
0

您无法更改页面(您的意思是设备吗?)方向,您只能检测它(然后相应地修改样式)。

于 2013-10-08T04:09:18.480 回答
-1

如果你想改变 pdf 的方向说

var pdf = new BytescoutPDF();

pdf.pageSetOrientation(BytescoutPDF.PORTRAIT); // BytescoutPDF.PORTRAIT = portrait, BytescoutPDF.LANDSCAPE = landscape
    pdf.pageAdd();

    pdf.textAdd(50, 50, 'Portrait page orientation', 0);

    // add a page with landscape orientation
    pdf.pageSetOrientation(BytescoutPDF.LANDSCAPE);
    pdf.pageAdd();

    pdf.textAdd(50, 50, 'Landscape page orientation', 0);

    // return BytescoutPDF object instance
    return pdf;
于 2013-10-08T04:06:54.593 回答