Home > Web Front-end > JS Tutorial > body text

The difference between javascript offsetX and layerX_javascript skills

WBOY
Release: 2016-05-16 18:32:33
Original
1019 people have browsed it

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';
}
}
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template