禁止页面回弹
Posted super-scarlett
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止页面回弹相关的知识,希望对你有一定的参考价值。
//控制页面不动
bounce: false
var heightSum = document.documentElement.clientHeight;
var first = document.getElementsByClassName(‘first‘)[0];
var second = document.getElementsByClassName(‘second‘)[0];
var firstHeight = first.clientHeight;
second.style.height = (heightSum - firstHeight) + ‘px‘;
second.style.overflow = ‘scroll‘;
以上是关于禁止页面回弹的主要内容,如果未能解决你的问题,请参考以下文章