移动网站 - 根本不滚动
我到处搜索 - 我的网站没有固定的高度,没有固定的展示位置。它显示了我想要的视口,但仅此而已。它不会滚动或显示任何其他内容。
我缺少什么?我已经尝试了各种溢出选项,但似乎没有任何效果。
I've googled everywhere - my site has no fixed heights, no fixed placements. It shows the viewport as I'd like, but ONLY that. It doesn't scroll or show anything else.
What am I missing? I've tried all sort of overflow options, nothing seems to be working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我会执行以下操作...
I would do the following...
BODY 和 HTML 标签的高度为 100%,您的 .wrapper 的高度也是 100%
尝试从 .wrapper 中删除高度
如果您遇到内容溢出,请将
overflow: hide
添加到 .wrapperBODY and HTML tags are 100% in height and so is your .wrapper
Try removing the height from .wrapper
If you experience content overflowing, add
overflow: hidden
to .wrapper我正在使用由 JavaScript 滑块加载的 iframe 在我的网站上加载 YouTube 视频。这导致 Android 出现问题,不允许滚动和缩放页面。它与设置CSS“html,body”高度或溢出隐藏无关。一旦我摆脱了 jQuery 滑块插件中的 YouTube 视频,网站滚动和缩放就开始在 Android 手机上正常工作。
I was loading a YouTube video on my site using an iframe loaded by JavaScript slider. This caused a problem with Android which did not allow scrolling and zooming of the page. It had nothing to do with setting CSS "html, body" heights or overflow hiddens. Once I got rid of my YouTube video inside the jQuery slider plugin, website scrolling and zooming started working just fine on the Android phone.
正在尝试删除 html 上添加的最后 javascript!我发现我的网站由于 javascript 而无法在移动设备上滚动。
此致,
Trying removing the last javascripts added on your html!I found that my site doesn't scroll on mobiles because a javascript.
Best regards,