Home >Web Front-end >JS Tutorial >The difference between javascript offsetX and layerX_javascript skills

The difference between javascript offsetX and layerX_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 18:32:331098browse

A simple example: Determine whether the mouse is on the left or right side of the event source, which is commonly used in automatic page turning when clicking on a picture.

Copy code The code is as follows:

function GetMousePosStr (evnt,ele)
{
if(!evnt)
{
evnt = window.event;
}

var offsetX = evnt.offsetX ? evnt.offsetX : evnt.layerX;

if(evnt.offsetX < ele.offsetWidth / 2)
{
return 'left';
}
else
{
return 'right';
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn