위챗 브라우저에서 페이지 아래로 웹 주소 보기 금지 실례 상세 정보

1880 단어
위챗 브라우저에서 페이지 아래로 웹 주소 보기 금지 실례 상세 정보
이러한 이벤트는 핸드폰 touchmove의 기본 이벤트 행위로 js 코드를 통해 이벤트를 숨길 수 있습니다.

$(‘body').on(‘touchmove', function (event) {event.preventDefault();});
or
document.addEventListener('touchmove', function(e){e.preventDefault()}, false);

그러나 이렇게 하면 종종 페이지의 원래 scroll 효과도 함께 제거되고 아래의 코드는 이 문제를 완벽하게 해결할 수 있다.

var overscroll = function(el) {
 el.addEventListener('touchstart', function() {
  var top = el.scrollTop
   , totalScroll = el.scrollHeight
   , currentScroll = top + el.offsetHeight;
  //If we're at the top or the bottom of the containers
  //scroll, push up or down one pixel.
  //
  //this prevents the scroll from "passing through" to
  //the body.
  if(top === 0) {
   el.scrollTop = 1;
  } else if(currentScroll === totalScroll) {
   el.scrollTop = top - 1;
  }
 });
 el.addEventListener('touchmove', function(evt) {
  //if the content is actually scrollable, i.e. the content is long enough
  //that scrolling can occur
  if(el.offsetHeight < el.scrollHeight)
   evt._isScroller = true;
 });
}
overscroll(document.querySelector('.scroll'));
document.body.addEventListener('touchmove', function(evt) {
 //In this case, the default behavior is scrolling the body, which
 //would result in an overflow. Since we don't want that, we preventDefault.
 if(!evt._isScroller) {
  evt.preventDefault();
 }
});

자세한 내용은 다음과 같습니다.https://github.com/luster-io/prevent-overscroll/blob/master/index.html
소스 다운로드:http://xiazai.jb51.net/201706/yuanma/preventoverscrollmaster(jb51.net).rar
읽어주셔서 감사합니다. 여러분에게 도움이 되었으면 좋겠습니다. 본 사이트에 대한 지지에 감사드립니다!

좋은 웹페이지 즐겨찾기