Let’s first look at how to get the cursor’s position relative to the entire page, because the cursor position variables x and y are generally obtained through mouse events (such as mousemove or mousedown). The following two general functions are used to obtain the current cursor position relative to the entire page. Location.
function getX(e) {
//Generalized event object
e = e || window.event;
//Check the location of the non-IE browser first, then check the location of IE
return e.pageX || e.clientX document.body.scrollLeft;
}
//Get the vertical position of the cursor
function getY(e) {
//Generalized event object
e = e || window.event;
//Check the location of the non-IE browser first, then check the location of IE
return e.pageY || e.clientY document.body.scrollTop;
}
For example, in FF e.pageX is the X coordinate in the entire page (including the scrolling distance of the scroll bar), while in IE e.clientX represents the X coordinate in the view currently displayed in front of the user, and You need to add document.body.scrollLeft (the distance of the horizontal scroll bar) to get the complete X coordinate position.
The following concept is the viewport, which can be regarded as everything within the browser scroll bar. Some components also included in the viewport are the viewport window, pages, scroll bars, etc.
Get the size of the page:
function pageHeight() {
return document.body.scrollHeight;
}
//Return the width of the page
function pageWidth() {
return document.body.scrollWidht;
}
The scrollHeight and scrollWidth (click to view), they describe the potential width and height of the element in detail, not just the currently seen size. .
Next we need to get the position of the scroll bar, in other words, the distance from the top of the page relative to the viewport.
function scrollX () {
//A shortcut, used in strict mode of IE6/7
var de = document.documentElement;
//If the pageXOffset attribute exists in the browser, use it
return self.pageXOffset ||
//Otherwise, try to get the left scroll offset of the root node
(de && de.scrollLeft) ||
//Finally, try to get the left scroll offset of the body element Amount
document.body.scrollLeft;
}
//Function to determine the vertical scrolling position of the browser
function scrollY() {
//A shortcut, used in IE6 /7 in strict mode
var de = document.documentElement;
//If the pageYOffset attribute exists in the browser, use it
return self.pageYOffset ||
//Otherwise, try to get the root The top scroll offset of the node
(de && de.scrollTop) ||
//Finally, try to get the top scroll offset of the body element
document.body.scrollTop;
}
Let’s take a look at how to move the scroll bar. We can use the scrollTo method, which exists as a property of the window object. It takes two parameters, namely x and y offsets. Scroll to the specified position of the viewport, two examples
window.scrollTo(0,0)
//If you need to scroll to the specified element, you can do this
window.scrollTo(0, pageY(document .getElementById('content')));
If you are not familiar with the pageY function, you can review it and use it to obtain the position of the element in the entire document. Give it again and let Consolidate it yourself
function pageY(elem) {
//Check if we are at the root element
return elem.offsetParent?
//If we can continue to get the previous element, increase the current offset and continue to recurse upwards
elem.offsetTop pageY(elem.offsetParent):
// Otherwise, get the current offset
elem.offsetTop;
}
Let’s learn how next Obtain the size of the viewport (viewport). Obtaining the size of the viewport can provide insight into how much content the user can currently see.
function windowHeight() {
//IE6/7의 엄격 모드에서 사용되는 단축키
var de = document.documentElement
/ / 브라우저에 innerHeight 속성이 있으면 이를 사용하세요.
return self.innerHeight ||그렇지 않으면 루트 노드 높이를 가져오세요.
(de && de.clientHeight) || /마지막으로 본문 요소
document.body.clientHeight
}
//뷰포트 너비 가져오기
function windowWidth() {
//IE6/7의 엄격 모드에서 사용되는 단축키
var de = document.documentElement
//innerWidth 속성이 브라우저에 있으면 이를 사용하세요.
return self.innerWidth || >//그렇지 않으면 루트 노드의 너비를 가져옵니다.
(de && de.clientWidth) ||
//마지막으로 본문 요소의 너비를 가져옵니다.
document.body.clientWidth ;
}
innerHeight
clientHeight 등과 같은 속성에 대해 약간의 의문이 있을 수 있습니다. Mozilla 개발자 센터에 매우 명확하게 설명되어 있습니다. 마지막으로 현재 웹 프런트엔드에서도 매우 인기 있는 더 흥미로운 효과에 대해 이야기하겠습니다. 저자는 구체적인 구현을 제공하지 않았지만 좋은 js 라이브러리를 인용했습니다. dom-drag .js에서는 전문가의 소스 코드를 배울 수 있으며, jquery를 비롯한 여러 인기 js 라이브러리도 소개합니다. 자, javascript와 css에 대한 리뷰입니다. 궁금한 점이 있으면 토론을 위해 메시지를 남겨주세요.

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
