0%
![]()
监听页面滑轮滚动
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
function scroll() { console.log("开始滚动!"); }
var scrollFunc = function (e) { e = e || window.event; if (e.wheelDelta) { if (e.wheelDelta > 0) { console.log("滑轮向上滚动"); } if (e.wheelDelta < 0) { console.log("滑轮向下滚动"); } } else if (e.detail) { if (e.detail > 0) { console.log("滑轮向上滚动");
} if (e.detail < 0) { console.log("滑轮向下滚动"); } } } if (document.addEventListener) { document.addEventListener('DOMMouseScroll', scrollFunc, false); } window.onmousewheel = document.onmousewheel = scrollFunc;
window.onscroll = function () { HoverTreeMove() }; function HoverTreeMove() { var h_scrollTop = document.documentElement.scrollTop || document.body.scrollTop; var hh = window.innerHeight > 0 ? window.innerHeight : document.documentElement.clientHeight; var h_scrollHeight = document.body.scrollHeight; if (h_scrollTop + hh < h_scrollHeight) { }else { }
console.log(hh + "-----hh") console.log(h_scrollTop + "-------h_scrollTop") console.log(h_scrollHeight + "--------scrollHeight") console.log((h_scrollTop + wH) + "-------h_scrollTop + wH ") } HoverTreeMove()
|
移动端:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
| var body = document.getElementsByTagName("body")[0]; body.addEventListener('touchstart', touchs, false); body.addEventListener('touchmove', touchs, false); body.addEventListener('touchend', touchs, false);
function touchs(event) { console.log(JSON.stringify(event.target)) var box = document.getElementById('box'); if (event.type == "touchstart") { console.log('开始'); var touch = event.touches[0]; startx = Math.floor(touch.pageX); starty = Math.floor(touch.pageY); } else if (event.type == "touchmove") { console.log('滑动中'); var touch = event.touches[0]; movex = Math.floor(touch.pageX); movey = Math.floor(touch.pageY); } else if (event.type == "touchend" || event.type == "touchcancel") { endx = Math.floor(event.changedTouches[0].pageX); endy = Math.floor(event.changedTouches[0].pageY); console.log('结束'); nx = endx - startx; ny = endy - starty; angle = Math.atan2(ny, nx) * 180 / Math.PI; if (Math.abs(nx) <= 10 || Math.abs(ny) <= 1) { console.log('滑动距离过小'); return false; } if (angle < 45 && angle >= -45) { console.log('右滑动'); return false; } else if (angle < 135 && angle >= 45) { console.log('下滑动'); upScroll(); return false; } else if ((angle <= 180 && angle >= 135) || (angle >= -180 && angle < -135)) { console.log('左滑动'); return false; } else if (angle <= -45 && angle >= -135) { console.log('上滑动'); downScroll(); return false; } } }
function downScroll() {
}
function upScroll() {
}
|