摘要: 鼠标事件 (MouseEvent) offsetX、offsetY: 只读 鼠标指针相对于目标节点内边位置的X坐标/ Y坐标 鼠标相对于事件源元素(srcElement)的X,Y坐标 clientX、clientY: 只读 鼠标指针在点击元素(DOM)中的X坐标/ Y坐标 鼠标相对于浏览器窗口可视区 阅读全文
posted @ 2021-11-16 14:02 Better-HTQ 阅读(445) 评论(0) 推荐(0) 编辑
摘要: function ScollPostion() { var t, l, w, h; if (document.documentElement && document.documentElement.scrollTop) { // 在xhtml标准网页或者更简单的说是带< !DOCTYPE..>标签的 阅读全文
posted @ 2021-11-16 10:54 Better-HTQ 阅读(92) 评论(0) 推荐(0) 编辑
摘要: API 网页可见区域宽: document.body.clientWidth; 网页可见区域高: document.body.clientHeight; 网页可见区域宽: document.body.offsetWidth (包括边线的宽); 网页可见区域高: document.body.offse 阅读全文
posted @ 2021-11-16 10:22 Better-HTQ 阅读(23) 评论(0) 推荐(0) 编辑