スクロールバーのタッチダウンを監視
2602 ワード
スクロールバーのタッチダウンを監視します.レコードとして使用します.
11111111111111111
22222222222222222
33333333333333333
44444444444444444
55555555555555555
66666666666666666
77777777777777777
88888888888888888
99999999999999999
11111111111111111
22222222222222222
33333333333333333
44444444444444444
window.onload = () => {
// ;
function getScrollTop() {
let scrollTop = document.documentElement.scrollTop;
console.log(" :" + scrollTop);
return scrollTop;
}
//
function getClientHeight() {
var clientHeight = 0;
console.log(document.body.clientHeight+",,,,,,,"+document.documentElement.clientHeight);
if (document.body.clientHeight && document.documentElement.clientHeight) {
clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight);
} else {
clientHeight = Math.max(document.body.clientHeight, document.documentElement.clientHeight);
}
console.log(" :"+clientHeight);
return clientHeight;
}
//
function getScrollHeight() {
var eleHeight;
eleHeight=Math.max(document.body.scrollHeight, document.documentElement.scrollHeight)
console.log(" :"+eleHeight);
return eleHeight;
}
window.onscroll = () => {
getScrollTop();
getClientHeight();
getScrollHeight();
if(getScrollTop()+getClientHeight() == getScrollHeight()){
console.error(" ");
}
}
}