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’.

祝你好运.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...