禁用滚动弹跳
在桌面应用上,你可能希望禁用滚动反弹,以使你的应用更具原生感。你可以通过禁用浏览器控制 DOM 的方式使用 javascript 来执行此操作:
// prevent scrolling on the whole page
// this is not meteorish; TODO: translate to meteor-centric code
document.ontouchmove = function(e) {e.preventDefault()};
// prevent scrolling on specific elements
// this is not meteorish; TODO: translate to meteor-centric code
scrollableDiv.ontouchmove = function(e) {e.stopPropagation()};
或者,你可以使用 css,以及溢出和滚动样式。
#appBody {
overflow: hidden;
}
#contentContainer {
.content-scrollable {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
}
上面工作所需的对象模型看起来像这样:
<div id="appBody">
<div id="contentContainer">
<div class="content-scrollable">
<!-- content -->
</div>
</div>
</div>