iPhone上的滚动iframe不起作用

时间:2014-09-30 09:43:29

标签: javascript jquery html css iframe

我知道很多例子都显示了这个问题,但我尝试了所有内容,我的iframe不会在iPhone上滚动。

我有这段代码:

<div id="content">
   <div id="header"><div>
   <div id="container_iframe">
       <iframe id ="external_content_iframe"></iframe>
   </div>
</div>

使用CSS

#container_iframe
{
    width: 100%;
    height: 88%;
    z-index: 1001;
    margin: auto;
    left: 0;
    top: 55px;
    right: 0;
    bottom: 0;
    overflow-y:scroll !important;
    -webkit-overflow-scrolling:touch !important;
}

#external_content_iframe
{
    width: 100%;
    height: 100%;
    z-index: 1001;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top:15%;
}

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

请参阅这些问题,他们可能会找到您正在寻找的答案/解释:

Question 1

Question 2