iPhone 和 iPad 滚动结束

发布于 2024-10-13 09:14:26 字数 243 浏览 4 评论 0原文

我正在制作一些带有无限滚动的 jQuery 跨浏览器画廊,我工作得很好,但在 iPhone 上(我想也在 iPad 上)而不是相等的值,我有一些不成比例的值不匹配,

($(window).scrollTop() == ($(document).height() - $(window).height()) 

我只想到达滚动的末尾,之后我可以调用 AJAX 脚本,还必须记住两根手指擦拭缩放后值会发生变化。

I'm making some jQuery cross-browser gallery with infinite scroll i works great but on iPhone (i suppose also on iPad) instead equal values i have some disproportion values don't match

($(window).scrollTop() == ($(document).height() - $(window).height()) 

i just want to reach the end of scrolling on that , after that i could invoke AJAX script, also have to keep in mind that values changing after two fingers wipe zoom.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

极致的悲 2024-10-20 09:14:26

您需要考虑 iPhone 上的 60 像素 URL 文本字段。试试这个:

($(window).scrollTop() + 60 == ($(document).height() - $(window).height()) 

You need to account for the 60px URL text field on iPhone. Try this:

($(window).scrollTop() + 60 == ($(document).height() - $(window).height()) 
眸中客 2024-10-20 09:14:26
var wintop = $(window).scrollTop(), docheight = $(document).height(), winheight = $(window).height();
        var  scrolltrigger = 0.90;

        if  ((wintop/(docheight-winheight)) > scrolltrigger) {

            //Your AJAX CALL HERE
        }
    });
var wintop = $(window).scrollTop(), docheight = $(document).height(), winheight = $(window).height();
        var  scrolltrigger = 0.90;

        if  ((wintop/(docheight-winheight)) > scrolltrigger) {

            //Your AJAX CALL HERE
        }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文