我正在开发一个全屏视频网站。当用户在智能手机中访问该网站时,我想将页面方向更改为横向模式。我尝试使用 css 媒体方向但没有锻炼。
Pease 帮助我使用 javascript 来完成这项工作。
我正在开发一个全屏视频网站。当用户在智能手机中访问该网站时,我想将页面方向更改为横向模式。我尝试使用 css 媒体方向但没有锻炼。
Pease 帮助我使用 javascript 来完成这项工作。
使用 css 旋转页面怎么样?
-webkit-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-ms-transform:rotate(-90deg);
-o-transform:rotate(-90deg);
transform:rotate(-90deg);
您无法更改页面(您的意思是设备吗?)方向,您只能检测它(然后相应地修改样式)。
如果你想改变 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;