感谢我在这里收到的建议,我解决了我的代码的一些问题,现在我有了:
window.onload = function(){
var tooltip = $( '<div id="tooltip">' ).appendTo( 'body' )[0];
$( 'img' ).
each(function () {
var pos = $( this ).position(),
top = pos.top,
left = pos.left,
width = $( this ).width(),
height = $( this ).height();
$( this ).
mousemove(function ( e ) {
var x = e.pageX - left,
y = e.pageY - top;
$( tooltip ).html( 'x = ' + x + '<br/>y = ' + y ).css({
left: e.clientX + 10,
top: e.clientY + 10
}).show();
}).
mouseleave(function () {
$( tooltip ).hide();
});
});
};
不幸的是,Y 坐标不是整数!看图片:
差异与应有的差异是恒定的:-0.42。它从照片上边缘的 -0.42 到下边缘的 1198.58 不等。(图片高度为1200)。
我绝对可以将其汇总并解决问题,但这不是一个干净的解决方案。我想从一开始就做好。
这是CSS:
body { font:13px/1.4 Arial, sans-serif; margin:50px; background:gray; }
#tooltip { text-align:left; background:black; color:white; padding:3px 0; position:fixed; display:none; white-space:nowrap; }
这是 HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="javascript.js"></script></head>
</head>
<body>
<div id="content">
<h1>JS test</h1>
<img class="coords" src = "pic.jpg">
<p>Paragraph between images</p>
<img class="coords" src = "pic.jpg">
</div>
</body>
</html
非常感谢你的帮助!
戴维德