Yanıtlar:
document.elementFromPoint(x, y);
http://dev.w3.org/csswg/cssom-view/#dom-document-elementfrompoint
http://msdn.microsoft.com/en-us/library/ms536417%28VS.85%29.aspx
https://developer.mozilla.org/en/DOM/document.elementFromPoint
document.elementsFromPoint
- elemanların örtüşmesi durumunda.
elementFromPoint(x, y)
Öğeyi görünüm alanında x, y koordinatlarında döndüren yerel JavaScript yöntemini kullanabilirsiniz .
ElementFromPoint w3c taslağına bakın
Ve bir kod örneği:
function changeColor(newColor) {
// Get the element placed at coords (2, 2)
var elem = document.elementFromPoint(2, 2);
// Set the foreground color to the element
elem.style.color = newColor;
}
<p id="para1">Change this text color using the following buttons.</p>
<button onclick="changeColor('blue');">Blue</button>
<button onclick="changeColor('red');">Red</button>
setInterval()
Öğenin üzerine gelme olayını sürekli olarak kontrol etmek için kullanabilirsiniz ancak bu önerilmez, .hover(...)
bunun yerine uygulama performansını artırmak için ve css kullanmayı deneyin .