我创建了一个网站,jQueryMobile iOS和Android。
我不想文档本身进行滚动。 取而代之的是,仅仅一个区域( <div>
元素)应该是可滚动(通过CSS属性overflow-y:scroll
)。
所以我禁用文件通过滚动:
$(document).bind("touchstart", function(e){
e.preventDefault();
});
$(document).bind("touchmove", function(e){
e.preventDefault();
});
但是,这也将禁用滚动文档中的所有其他元素,无论overflow:scroll
设置与否。
我该如何解决这个问题?
Answer 1:
这个怎么样CSS唯一的解决方法:
https://jsfiddle.net/Volker_E/jwGBy/24/
body
得到position: fixed;
和所有其他元素,你希望的overflow: scroll;
。 工作在移动浏览器(WebKit的)/火狐19 /歌剧12。
您还可以看到我对一个jQuery解决各种尝试。 但只要你结合touchmove
/ touchstart
记录,它会妨碍孩子滚动DIV不管unbinded与否。
免责声明:解决这个问题,在很多方面基本上不是很好UX-明智的! 你永远不知道你的访客的视口有多大到底是和他们使用的(如客户端用户代理样式),其字体大小,因此它可以很容易地,是重要的内容是隐藏它们在文档中。
Answer 2:
最后,我得到它的工作。 很简单:
var $layer = $("#layer");
$layer.bind('touchstart', function (ev) {
var $this = $(this);
var layer = $layer.get(0);
if ($this.scrollTop() === 0) $this.scrollTop(1);
var scrollTop = layer.scrollTop;
var scrollHeight = layer.scrollHeight;
var offsetHeight = layer.offsetHeight;
var contentHeight = scrollHeight - offsetHeight;
if (contentHeight == scrollTop) $this.scrollTop(scrollTop-1);
});
Answer 3:
也许我误解了这个问题,但如果我是正确的:
你想不能够只是某一个元素,所以你滚动:
$(document).bind("touchmove", function(e){
e.preventDefault();
});
防止文档内的一切。
你为什么不只是阻止事件冒泡要在其中滚动的元素? (PS:你没有阻止touchstart - >如果你使用的触摸开始选择元素,而不是被抑制,以及点击,触摸移动时,才需要因为那实际上是跟踪运动)
$('#element').on('touchmove', function (e) {
e.stopPropagation();
});
现在,在元素的CSS
#element {
overflow-y: scroll; // (vertical)
overflow-x: hidden; // (horizontal)
}
如果你是在移动设备上,你甚至可以走得更远了一步。 您可以强制硬件加速滚动(虽然不是所有的移动浏览器都支持这一点);
Browser Overflow scroll:
Android Browser Yes
Blackberry Browser Yes
Chrome for Mobile Yes
Firefox Mobile Yes
IE Mobile Yes
Opera Mini No
Opera Mobile Kinda
Safari Yes
#element.nativescroll {
-webkit-overflow-scrolling: touch;
}
正常:
<div id="element"></div>
原生的感觉:
<div id="element" class="nativescroll"></div>
Answer 4:
我一直在寻找,并不需要呼叫应该滚动特定领域的解决方案。 一些资源拼凑,这里是我工作:
// Detects if element has scroll bar
$.fn.hasScrollBar = function() {
return this.get(0).scrollHeight > this.outerHeight();
}
$(document).on("touchstart", function(e) {
var $scroller;
var $target = $(e.target);
// Get which element could have scroll bars
if($target.hasScrollBar()) {
$scroller = $target;
} else {
$scroller = $target
.parents()
.filter(function() {
return $(this).hasScrollBar();
})
.first()
;
}
// Prevent if nothing is scrollable
if(!$scroller.length) {
e.preventDefault();
} else {
var top = $scroller[0].scrollTop;
var totalScroll = $scroller[0].scrollHeight;
var currentScroll = top + $scroller[0].offsetHeight;
// If at container edge, add a pixel to prevent outer scrolling
if(top === 0) {
$scroller[0].scrollTop = 1;
} else if(currentScroll === totalScroll) {
$scroller[0].scrollTop = top - 1;
}
}
});
此代码需要jQuery的。
资料来源:
- 这个帖子
- https://github.com/luster-io/prevent-overscroll
- 如何检查,如果一个滚动条是可见的?
- jQuery的检查,如果任何父格有滚动条
更新
我需要一个香草的这个JavaScript版本,所以下面是修改后的版本。 我实现了一个保证金检查和一些明确允许输入/文字区域是可点击(我在我用它在该项目运行到问题与此...它可能没有必要为您的项目)。 请记住,这是ES6代码。
const preventScrolling = e => {
const shouldAllowEvent = element => {
// Must be an element that is not the document or body
if(!element || element === document || element === document.body) {
return false;
}
// Allow any input or textfield events
if(['INPUT', 'TEXTAREA'].indexOf(element.tagName) !== -1) {
return true;
}
// Get margin and outerHeight for final check
const styles = window.getComputedStyle(element);
const margin = parseFloat(styles['marginTop']) +
parseFloat(styles['marginBottom']);
const outerHeight = Math.ceil(element.offsetHeight + margin);
return (element.scrollHeight > outerHeight) && (margin >= 0);
};
let target = e.target;
// Get first element to allow event or stop
while(target !== null) {
if(shouldAllowEvent(target)) {
break;
}
target = target.parentNode;
}
// Prevent if no elements
if(!target) {
e.preventDefault();
} else {
const top = target.scrollTop;
const totalScroll = target.scrollHeight;
const currentScroll = top + target.offsetHeight;
// If at container edge, add a pixel to prevent outer scrolling
if(top === 0) {
target.scrollTop = 1;
} else if(currentScroll === totalScroll) {
target.scrollTop = top - 1;
}
}
};
document.addEventListener('touchstart', preventScrolling);
document.addEventListener('mousedown', preventScrolling);
Answer 5:
下面是我使用的解决方案:
$ scrollElement是滚动元件,$ scrollMask与风格一个div position: fixed; top: 0; bottom: 0;
position: fixed; top: 0; bottom: 0;
。 该z-index
$ scrollMask是超过$ scrollElement小。
$scrollElement.on('touchmove touchstart', function (e) {
e.stopPropagation();
});
$scrollMask.on('touchmove', function(e) {
e.stopPropagation();
e.preventDefault();
});
Answer 6:
就我而言,我有一个滚动体和在其上滚动的浮动菜单。 双方必须是滚动的,但我不得不防止身体滚动时,“浮动菜单”(位置:固定)收到触摸事件,并滚动和它到达顶部或底部。 默认情况下,浏览器,然后开始滚动体。
我真的很喜欢jimmont的回答 ,但很遗憾,没有对所有的设备和浏览器很好地工作,特别是快速和长刷卡。
最后我用动量SCROLLING使用jQuery(hnldesign.nl)浮动菜单,这将阻止默认浏览器滚动,然后滚动动画本身。 包括我的代码是为了完整性:
/**
* jQuery inertial Scroller v1.5
* (c)2013 hnldesign.nl
* This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.
**/
/*jslint browser: true*/
/*global $, jQuery*/
/* SETTINGS */
var i_v = {
i_touchlistener : '.inertialScroll', // element to monitor for touches, set to null to use document. Otherwise use quotes. Eg. '.myElement'. Note: if the finger leaves this listener while still touching, movement is stopped.
i_scrollElement : '.inertialScroll', // element (class) to be scrolled on touch movement
i_duration : window.innerHeight * 1.5, // (ms) duration of the inertial scrolling simulation. Devices with larger screens take longer durations (phone vs tablet is around 500ms vs 1500ms). This is a fixed value and does not influence speed and amount of momentum.
i_speedLimit : 1.2, // set maximum speed. Higher values will allow faster scroll (which comes down to a bigger offset for the duration of the momentum scroll) note: touch motion determines actual speed, this is just a limit.
i_handleY : true, // should scroller handle vertical movement on element?
i_handleX : true, // should scroller handle horizontal movement on element?
i_moveThreshold : 100, // (ms) determines if a swipe occurred: time between last updated movement @ touchmove and time @ touchend, if smaller than this value, trigger inertial scrolling
i_offsetThreshold : 30, // (px) determines, together with i_offsetThreshold if a swipe occurred: if calculated offset is above this threshold
i_startThreshold : 5, // (px) how many pixels finger needs to move before a direction (horizontal or vertical) is chosen. This will make the direction detection more accurate, but can introduce a delay when starting the swipe if set too high
i_acceleration : 0.5, // increase the multiplier by this value, each time the user swipes again when still scrolling. The multiplier is used to multiply the offset. Set to 0 to disable.
i_accelerationT : 250 // (ms) time between successive swipes that determines if the multiplier is increased (if lower than this value)
};
/* stop editing here */
//set some required vars
i_v.i_time = {};
i_v.i_elem = null;
i_v.i_elemH = null;
i_v.i_elemW = null;
i_v.multiplier = 1;
// Define easing function. This is based on a quartic 'out' curve. You can generate your own at http://www.timotheegroleau.com/Flash/experiments/easing_function_generator.htm
if ($.easing.hnlinertial === undefined) {
$.easing.hnlinertial = function (x, t, b, c, d) {
"use strict";
var ts = (t /= d) * t, tc = ts * t;
return b + c * (-1 * ts * ts + 4 * tc + -6 * ts + 4 * t);
};
}
$(i_v.i_touchlistener || document)
.on('touchstart touchmove touchend', function (e) {
"use strict";
//prevent default scrolling
e.preventDefault();
//store timeStamp for this event
i_v.i_time[e.type] = e.timeStamp;
})
.on('touchstart', function (e) {
"use strict";
this.tarElem = $(e.target);
this.elemNew = this.tarElem.closest(i_v.i_scrollElement).length > 0 ? this.tarElem.closest(i_v.i_scrollElement) : $(i_v.i_scrollElement).eq(0);
//dupecheck, optimizes code a bit for when the element selected is still the same as last time
this.sameElement = i_v.i_elem ? i_v.i_elem[0] == this.elemNew[0] : false;
//no need to redo these if element is unchanged
if (!this.sameElement) {
//set the element to scroll
i_v.i_elem = this.elemNew;
//get dimensions
i_v.i_elemH = i_v.i_elem.innerHeight();
i_v.i_elemW = i_v.i_elem.innerWidth();
//check element for applicable overflows and reevaluate settings
this.i_scrollableY = !!((i_v.i_elemH < i_v.i_elem.prop('scrollHeight') && i_v.i_handleY));
this.i_scrollableX = !!((i_v.i_elemW < i_v.i_elem.prop('scrollWidth') && i_v.i_handleX));
}
//get coordinates of touch event
this.pageY = e.originalEvent.touches[0].pageY;
this.pageX = e.originalEvent.touches[0].pageX;
if (i_v.i_elem.is(':animated') && (i_v.i_time.touchstart - i_v.i_time.touchend) < i_v.i_accelerationT) {
//user swiped while still animating, increase the multiplier for the offset
i_v.multiplier += i_v.i_acceleration;
} else {
//else reset multiplier
i_v.multiplier = 1;
}
i_v.i_elem
//stop any animations still running on element (this enables 'tap to stop')
.stop(true, false)
//store current scroll positions of element
.data('scrollTop', i_v.i_elem.scrollTop())
.data('scrollLeft', i_v.i_elem.scrollLeft());
})
.on('touchmove', function (e) {
"use strict";
//check if startThreshold is met
this.go = (Math.abs(this.pageX - e.originalEvent.touches[0].pageX) > i_v.i_startThreshold || Math.abs(this.pageY - e.originalEvent.touches[0].pageY) > i_v.i_startThreshold);
})
.on('touchmove touchend', function (e) {
"use strict";
//check if startThreshold is met
if (this.go) {
//set animpar1 to be array
this.animPar1 = {};
//handle events
switch (e.type) {
case 'touchmove':
this.vertical = Math.abs(this.pageX - e.originalEvent.touches[0].pageX) < Math.abs(this.pageY - e.originalEvent.touches[0].pageY); //find out in which direction we are scrolling
this.distance = this.vertical ? this.pageY - e.originalEvent.touches[0].pageY : this.pageX - e.originalEvent.touches[0].pageX; //determine distance between touches
this.acc = Math.abs(this.distance / (i_v.i_time.touchmove - i_v.i_time.touchstart)); //calculate acceleration during movement (crucial)
//determine which property to animate, reset animProp first for when no criteria is matched
this.animProp = null;
if (this.vertical && this.i_scrollableY) { this.animProp = 'scrollTop'; } else if (!this.vertical && this.i_scrollableX) { this.animProp = 'scrollLeft'; }
//set animation parameters
if (this.animProp) { this.animPar1[this.animProp] = i_v.i_elem.data(this.animProp) + this.distance; }
this.animPar2 = { duration: 0 };
break;
case 'touchend':
this.touchTime = i_v.i_time.touchend - i_v.i_time.touchmove; //calculate touchtime: the time between release and last movement
this.i_maxOffset = (this.vertical ? i_v.i_elemH : i_v.i_elemW) * i_v.i_speedLimit; //(re)calculate max offset
//calculate the offset (the extra pixels for the momentum effect
this.offset = Math.pow(this.acc, 2) * (this.vertical ? i_v.i_elemH : i_v.i_elemW);
this.offset = (this.offset > this.i_maxOffset) ? this.i_maxOffset : this.offset;
this.offset = (this.distance < 0) ? -i_v.multiplier * this.offset : i_v.multiplier * this.offset;
//if the touchtime is low enough, the offset is not null and the offset is above the offsetThreshold, (re)set the animation parameters to include momentum
if ((this.touchTime < i_v.i_moveThreshold) && this.offset !== 0 && Math.abs(this.offset) > (i_v.i_offsetThreshold)) {
if (this.animProp) { this.animPar1[this.animProp] = i_v.i_elem.data(this.animProp) + this.distance + this.offset; }
this.animPar2 = { duration: i_v.i_duration, easing : 'hnlinertial', complete: function () {
//reset multiplier
i_v.multiplier = 1;
}};
}
break;
}
// run the animation on the element
if ((this.i_scrollableY || this.i_scrollableX) && this.animProp) {
i_v.i_elem.stop(true, false).animate(this.animPar1, this.animPar2);
}
}
});
另一种看法:我也试过在菜单DIV和在touchmove事件窗口/体e.preventDefault()e.stopPropagation()的各种组合,但都没有成功,我只设法防止滚动我想,而不是滚动我不想。 我也试过有超过整个文档一个div上,用文件和菜单之间的z-index,只有touchstart和touchend之间可见的,但是没有收到touchmove事件(因为它是下菜单DIV)。
Answer 7:
下面是一个使用jQuery的对事件的解决方案。
var stuff = {};
$('#scroller').on('touchstart',stuff,function(e){
e.data.max = this.scrollHeight - this.offsetHeight;
e.data.y = e.originalEvent.pageY;
}).on('touchmove',stuff,function(e){
var dy = e.data.y - e.originalEvent.pageY;
// if scrolling up and at the top, or down and at the bottom
if((dy < 0 && this.scrollTop < 1)||(dy > 0 && this.scrollTop >= e.data.max)){
e.preventDefault();
};
});
Answer 8:
第一个位置,无论你想在屏幕上,然后通过设置它的CSS“隐藏”修复outerScroller的innerScroller。 当你想恢复它,你可以将其设置回“自动”或“滚动”,无论你以前使用。
Answer 9:
这是我实现它在触摸设备和笔记本电脑的工作原理。
function ScrollManager() { let startYCoord; function getScrollDiff(event) { let delta = 0; switch (event.type) { case 'mousewheel': delta = event.wheelDelta ? event.wheelDelta : -1 * event.deltaY; break; case 'touchstart': startYCoord = event.touches[0].clientY; break; case 'touchmove': { const yCoord = event.touches[0].clientY; delta = yCoord - startYCoord; startYCoord = yCoord; break; } } return delta; } function getScrollDirection(event) { return getScrollDiff(event) >= 0 ? 'UP' : 'DOWN'; } function blockScrollOutside(targetElement, event) { const { target } = event; const isScrollAllowed = targetElement.contains(target); const isTouchStart = event.type === 'touchstart'; let doScrollBlock = !isTouchStart; if (isScrollAllowed) { const isScrollingUp = getScrollDirection(event) === 'UP'; const elementHeight = targetElement.scrollHeight - targetElement.offsetHeight; doScrollBlock = doScrollBlock && ((isScrollingUp && targetElement.scrollTop <= 0) || (!isScrollingUp && targetElement.scrollTop >= elementHeight)); } if (doScrollBlock) { event.preventDefault(); } } return { blockScrollOutside, getScrollDirection, }; } const scrollManager = ScrollManager(); const testBlock = document.body.querySelector('.test'); function handleScroll(event) { scrollManager.blockScrollOutside(testBlock, event); } window.addEventListener('scroll', handleScroll); window.addEventListener('mousewheel', handleScroll); window.addEventListener('touchstart', handleScroll); window.addEventListener('touchmove', handleScroll);
.main { border: 1px solid red; height: 200vh; } .test { border: 1px solid green; height: 300px; width: 300px; overflow-y: auto; position: absolute; top: 100px; left: 50%; } .content { height: 100vh; }
<div class="main"> <div class="test"> <div class="content"></div> </div> </div>
Answer 10:
这是为我工作Android和iOS设备。
试想一下,我们有一个div class="backdrop">
我们不希望被滚动,不断元素。 但是,我们希望能够通过是在此之上的元素滚动backdrop
。
function handleTouchMove(event) {
const [backdrop] = document.getElementsByClassName('backdrop');
const isScrollingBackdrop = backdrop === event.target;
isScrollingBackdrop ? event.preventDefault() : event.stopPropagation();
}
window.addEventListener('touchmove', handleTouchMove, { passive: false });
所以,我们听touchmove
事件,如果我们滚动在大背景下,我们要阻止它。 如果我们滚动了别的东西,我们允许它,但停止其传播,因此不会也滚动backdrop
。
当然,这是非常基本的,可以再加工,并扩大了很多,但是这是我的固定问题在VueJs2项目。
希望能帮助到你! ;)
文章来源: How to prevent document scrolling but allow scrolling inside div elements on websites for iOS and Android?