10

很多关于此的帖子,但不完全适合我的情况。我的页面的灵活尺寸设置为 100% 宽度和 100% 高度,因此典型的加载滚动功能不起作用。有什么想法或其他解决方案吗?

谢谢!

CSS:

* {
    margin:0;
    padding:0;
}
html, body {
    width:100%;
    height:100%;
    min-width:960px;
    overflow:hidden;
}

Javascript:

    /mobile/i.test(navigator.userAgent) && !pageYOffset && !location.hash && setTimeout(function () {
  window.scrollTo(0, 1);
    }, 1000);​
4

2 回答 2

5

Nate Smith 的这个解决方案帮助了我:如何在全屏 Iphone 或 Android Web App 中隐藏地址栏

这是必不可少的部分:

var page   = document.getElementById('page'),
    ua     = navigator.userAgent,
    iphone = ~ua.indexOf('iPhone') || ~ua.indexOf('iPod');

var setupScroll = window.onload = function() {
  // Start out by adding the height of the location bar to the width, so that
  // we can scroll past it
  if (ios) {
    // iOS reliably returns the innerWindow size for documentElement.clientHeight
    // but window.innerHeight is sometimes the wrong value after rotating
    // the orientation
    var height = document.documentElement.clientHeight;
    // Only add extra padding to the height on iphone / ipod, since the ipad
    // browser doesn't scroll off the location bar.
    if (iphone && !fullscreen) height += 60;
    page.style.height = height + 'px';
  }
  // Scroll after a timeout, since iOS will scroll to the top of the page
  // after it fires the onload event
  setTimeout(scrollTo, 0, 0, 1);
};

有关更多详细信息,请查看他的博客文章Gist

于 2012-02-27T06:55:02.967 回答
3

我也为此苦苦挣扎。最初我尝试了一个定义 200% 高度和溢出可见的 CSS 类 (.stretch),然后在 scrollTo 之前和之后通过脚本在 HTML 上切换它。这不起作用,因为计算出的 100% 高度指的是可用视口尺寸减去所有浏览器镶边(将状态栏重新定位到位)。

最终我不得不请求特定的样式通过 DOM API 动态应用。要添加到您的附加代码段:

var CSS = document.documentElement.style;

/mobile/i.test(navigator.userAgent) && !pageYOffset && !location.hash && setTimeout(function () {
  CSS.height = '200%';
  CSS.overflow = 'visible';

  window.scrollTo(0, 1);

  CSS.height = window.innerHeight + 'px';
  CSS.overflow = 'hidden';
}, 1000);​

但是,我建议扩展 Scott Jehl 的方法,该方法解决了 Android/iOS Safari 的小差异 scrollTo:

https://gist.github.com/scottjehl/1183357

于 2011-09-16T11:15:51.753 回答