我正在尝试为Firefox OS创建一个简单的文本编辑器,我使用testarea
作为用户的文本字段。当我将屏幕方向从纵向更改为横向或反之时,我正在使用模拟器,我需要textarea
自动更改其方向并获得全屏尺寸。但每次我改变方向时我都需要重新加载应用程序:(
如果我尝试screen.orientation
,则结果未定义。
我用来获取屏幕尺寸的Bellow代码
HTML:
<textarea id="input-text" onfocus="TextareaOnFocus()" onblur="TextareaRealeseFocus()"></textarea>
使用Javascript:
var textAreaSize = document.getElementById("input-text");
textAreaSize.style.height = screen.height - 74 + "px"; // -74, so that the field is not edge to edge
textAreaSize.style.width = screen.width - 21 + "px"; // -21, so that the field is not edge to edge
是否有任何方法可以更改键盘尺寸,使其覆盖屏幕的一半,因此我的文字变得非常小。