如何使用javascript更改页面方向?

时间:2013-10-08 03:59:45

标签: jquery css css3 javascript

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

Pease帮助我使用javascript工作。

3 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

如何使用css旋转页面?

-webkit-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-ms-transform:rotate(-90deg);
-o-transform:rotate(-90deg);
transform:rotate(-90deg);

答案 2 :(得分:-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;