具体思路:判定蒙层内容是否滚动到尽头,是则阻止默认行为,反之任它横行。
Tip:这里我发现了一个小技巧,可以省略不少代码。在一次滑动中,若蒙层内容可以滚动,则蒙层内容滚动,过程中即使蒙层内容已滚至尽头,只要不松手(可以理解为touchend事件触发前),继续滑动时页面内容不会滚动,此时若松手再继续滚动,则页面内容会滚动。利用这一个小技巧,我们可以精简优化我们的代码逻辑。
示例代码如下:
<body> <div class="page"> <!-- 这里多添加一些,直至出现滚动条 --> <p>页面</p> <p>页面</p> <button class="btn">打开蒙层</button> <p>页面</p> </div> <div class="container"> <div class="layer"></div> <div class="content"> <!-- 这里多添加一些,直至出现滚动条 --> <p>蒙层</p> <p>蒙层</p> <p>蒙层</p> </div> </div> </body>
body { margin: 0; padding: 20px; } .btn { border: none; outline: none; font-size: inherit; border-radius: 4px; padding: 1em; width: 100%; margin: 1em 0; color: #fff; background-color: #ff5777; } .container { position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 1001; display: none; } .layer { position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: 1; background-color: rgba(0, 0, 0, .3); } .content { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; z-index: 2; background-color: #f6f6f6; overflow-y: auto; }
const btnNode = document.querySelector('.btn') const containerNode = document.querySelector('.container') const layerNode = document.querySelector('.layer') const contentNode = document.querySelector('.content') let startY = 0 // 记录开始滑动的坐标,用于判断滑动方向 let status = 0 // 0:未开始,1:已开始,2:滑动中 // 打开蒙层 btnNode.addEventListener('click', () => { containerNode.style.display = 'block' }, false) // 蒙层部分始终阻止默认行为 layerNode.addEventListener('touchstart', e => { e.preventDefault() }, false) // 核心部分 contentNode.addEventListener('touchstart', e => { status = 1 startY = e.targetTouches[0].pageY }, false) contentNode.addEventListener('touchmove', e => { // 判定一次就够了 if (status !== 1) return status = 2 let t = e.target || e.srcElement let py = e.targetTouches[0].pageY let ch = t.clientHeight // 内容可视高度 let sh = t.scrollHeight // 内容滚动高度 let st = t.scrollTop // 当前滚动高度 // 已经到头部尽头了还要向上滑动,阻止它 if (st === 0 && startY < py) { e.preventDefault() } // 已经到低部尽头了还要向下滑动,阻止它 if ((st === sh - ch) && startY > py) { e.preventDefault() } }, false) contentNode.addEventListener('touchend', e => { status = 0 }, false)
内容版权声明:除非注明,否则皆为本站原创文章。