Home  >  Article  >  Web Front-end  >  The implementation code to make the div layer move with the mouse ie ff_javascript skills

The implementation code to make the div layer move with the mouse ie ff_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:38:56722browse

.center_div2
{
position: absolute;
z-index: 1;
text-align: center;
display: none;
background-color: #e0e7ef;
}

.center_div_tips2
{
position: relative;
color: Red;
}


Data updating...< /span>

Copy code The code is as follows:

function IsIE() {
var OsObject = "";
if (navigator.userAgent.indexOf("MSIE") > 0) {
return true;
}
}
function mouseMove(ev) {
/*ie The event mechanism is different from that of ff*/
ev = ev || window.event;
var mousePos = mouseCoords(ev);
var detailDiv = document .getElementById("detailDiv"); //The layer that will pop up
detailDiv.style.left = (mousePos.x 10) "px";
detailDiv.style.top = (mousePos.y 18) "px ";
}
function mouseCoords(ev) {
if (ev.pageX || ev.pageY) {
return {
x: ev.pageX,
y: ev .pageY
};
}
/*ie The boundary processing is different from ff*/
if (IsIE()) {
return { x: ev.clientX document.documentElement.scrollLeft - document.documentElement.clientLeft, y: ev.clientY document.documentElement.scrollTop - document.documentElement.clientTop }
}
else {
return { x: ev.clientX document.body.scrollLeft - document .body.clientLeft, y: ev.clientY document.body.scrollTop - document.body.clientTop }
}
}
document.onkeydown = keydown;
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