滚动事件侦听器无法在iFrame中的iOS上运行

时间:2015-01-25 11:21:50

标签: javascript jquery html ios iframe

我需要认真帮助。 我使用滚动事件监听器对一个站点进行了编程,以根据用户滚动的深度来动画一些图形。

在桌面和iOS上正常工作。 唯一的问题是该网站需要嵌入在iFrame中。 仍然适用于桌面,但不适用于iOS。

我已经设置了一个示例来说明我的意思。

首先在桌面上查看此页面,然后在iOS上查看。 http://www.webzeile.com/iframescroll/index.html

固定元素(Scroll o meter)在iOS中没有修复,我没有机会在这里获得 scrollTop

主页(我没有机会在这里修改iframe属性)

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>index</title>
  <style type="text/css" media="screen">
html, body {
overflow-y:auto;
}
</style>
</head>
<body>

<div style="-webkit-overflow-scrolling: touch !important; overflow:auto; width:800px; height:500px; margin:0px auto;">

<iframe id="iframe" scrolling="auto" webkitallowfullscreen frameborder="0" style="width:100%; height:100%;" src="iframe.html"></iframe>

</div>

iframe内容

    <!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>index</title>
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <style type="text/css" media="screen">
html, body {
overflow-y:auto;
margin:0px;
padding:0px;
}

    .div1, .div2 {
margin:0px;
padding:0px;

        height:700px;
    margin:0px;
        position:relative;
        width:100%;
    }
    .div1 {
        background:green;
    }
    .div2 {
        background:orange;
        top:100%;
    }

    #scrollindicator {
        color:#fff;
        position:fixed;
        right:20px;
        top:20px;
        z-index:1000;
        width:150px;
        height:25px;
    }
    </style>
</head>
<body>
<div class="div1">
    <h1>Content 1</h1>
</div>

    <div class="div2">
        <h1>Content 2</h1>
        <a href="#" onclick="alert($(window).scrollTop()); return false;">Alert scroll top</a>
        <a href="#" onclick="alert(window.pageYOffset); return false;">Alert Y offset</a>

    </div>


    <div id="scrollindicator">
       Scroll o meter: 0
    </div>

    <script type="text/javascript">
        $(window).scroll(function () {
            $("#scrollindicator").html("Scroll o meter: "+$(window).scrollTop()); 
        });
    </script>
</body>
</html>

尝试了一切。无法让Scroll处理程序在iOS上运行。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我看到你最终放弃了IFrame,但我今天发现了这个问题,同时遇到了类似的问题。我试图检测用户何时从与主页不同的域内的IFrame内滚动到页面底部。这是我提出的解决方案:

var totalY = 0;

function scroll_handler(e){
    var t = $(window).scrollTop();
    var h = $(window).height();
    var el = $('#bottomdiv');  //This is an element at the bottom of the page
    var bot = el.offset().top + (el.height()) - 400; //I wanted a 400px buffer

    if (e.type == "touchend") {
        totalY += e.originalEvent.changedTouches[0].clientY;

        if ( !t ) {
            t = totalY;
        }

    }

    if ((t + h) >= bot) {
        //Do Stuff when they get to the bottom of the page
    }
}

if ( 'ontouchstart' in window ) {
    $("body").on("touchend",scroll_handler);
} else {
    $(window).scroll(scroll_handler);
}

它并不完美,但它有效 - 当用户向下滑动页面并将其添加到totalY时,它会获得触摸事件的Y位置。如果此人快速滑动并且当它们到达底部时根本不触摸屏幕,则会失败。但是,它适用于我的情况。

我希望这可以帮助其他人解决类似问题。