Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在页面上滚动一个小 div,但是当我使用 ipad 时,它会滚动整个页面。在 PC 上,我可以单击滚动条,效果很好。我已经-webkit-overflow-scrolling:touch按照其他人的建议使用了该属性,但它没有用。有没有人有好的解决方案?
-webkit-overflow-scrolling:touch
尝试将此添加到您的部分:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
当您只想滚动有溢出的部分时,这可以确保页面保持原位并且不会滚动。这很有用的一个很好的例子是当你想创建一个地图,并用捏缩放。您只想缩放地图,而不是缩放地图周围的页面,这将是默认行为。