gpt4 book ai didi

jquery - 移动键盘调整视口(viewport)大小

转载 作者:技术小花猫 更新时间:2023-10-29 12:27:18 25 4
gpt4 key购买 nike

我正在做一个响应式网站,但遇到了这个问题。一切正常,直到我选择一个 [input type="text"] 并弹出键盘,整个网站都调整了大小,就像屏幕尺寸只是键盘上方的部分一样。我只想保持正常大小。我也在其他论坛上尝试了在 stackoverflow 上提出的所有解决方案,但似乎没有任何效果。

有人知道如何解决这个问题吗?

<head>
<title>SchoolIn</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

//other code

更新:我将尝试更好地解释。

我有一个头部

//other code
<div class="head">
//Here is some text
</div>
//other code

然后是内容部分

//other code
<div class="container">
<div class="content">
//other code
<input type="text" ...... />
<input type="password" ..... />
<input type="submit" ..... />
</div>
</div>
//other code

所有元素都是百分比,没有像素。

当键盘出现标题时,容器和内容 div 会重新调整尺寸,而输入字段和按钮则不会。无论如何,它们都是从容器中出来的,因为容器变小了,它们保持了原来的大小。不知道我说清楚没有。

同样的问题,如何让它在键盘出来时保持原来的大小?

最佳答案

<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">

试试这段 html。我在我的每个页面上都使用它,它总是做它应该做的。可能是因为缺少 minimum-scale 属性,您的无法正常工作。

关于jquery - 移动键盘调整视口(viewport)大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24768940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com