ďťż
Podstrony
|
telcocafewitampoczyniłem taki kod: <html> <head> <style> #okno{ position: absolute; display: none; } </style> <script type="text/javascript"> var pozycjax = 0; var pozycjay = 0; document.onmousemove = function(e){ pozycjax = (e?e.screenX:event.x); pozycjay = (e?e.screenY:event.y); } function okno(x,y){ document.getElementById("okno").style.display = "block"; document.getElementById("okno").style.left = x; document.getElementById("okno").style.top = y; } </script> </head> <body> <div id="okno">ds</div> <a href="http://www.google.pl" onmousemove="okno(pozycjax,pozycjay);">GOOGLE</a> </body> </html> ale na operze pod windowsem div jest jakieś 100px pod kursorem tymczasem pod IE jest tam gdzie powinien być... ktos ma jakiś pomysł co zrobiłem źle? pozdrawiam -------------- EDIT topic do zamknięcia..sam rozwiązałem problem zamieniłem screenX i screenY na clientX i clientY Użytkownik howking edytował ten post 12 kwiecień 2008, 14:45 |
|||
Sitedesign by AltusUmbrae. |