微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – iOS上的IFrame高度问题(手机游戏)

示例页面源:

<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>Page</title>
</head>
<body>
<div class="main" style="height: 100%;">
    <div class="header" style="height: 100px; background-color: green;"></div>

    <iframe src="http://www.wikipedia.com"
            style="height: 200px; width: 100%; border: none;"></iframe>

    <div class="footer" style="height: 100px; background-color: green;"></div>
</div>
</body>
</html>

问题是,在移动Safari中,IFrames内联样式的高度为200px会被忽略:

enter image description here

另外,我想通过vanilla JavaScript动态更改IFrame的高度,而这些JavaScript根本无法使用以下代码

document.getElementsByTagName('iframe')[0].style.height = "100px"

高度样式的值根据开发工具正确更改,但它被忽略,因为IFrame的实际渲染高度不会改变.

这似乎只是移动Safari中的一个问题,并且在最新版本的桌面Safari,Firefox,Chrome,Androids WebView等上正常运行.

测试页:http://devpublic.blob.core.windows.net/scriptstest/index.html

Ps.:我在browserstack上使用各种设备对此进行了测试,并且还在那里截取了屏幕截图,因为我手头没有实际的iDevice.

解决方法:

它看起来像这样:How to get an IFrame to be responsive in iOS Safari?

iFrame仅在iOS上存在问题,因此您必须调整iframe.

你可以把一个包裹iframe的div,在iframe上设置css,以及对我有用的是添加:put属性scrolling =’no’.

祝你好运.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐