我有一个已调整大小的图像(宽度=“100”)和一个jquery脚本,用于在单击该图像时输出当前坐标。
<img id="image" src="http://localhost/image.jpg" width="100" >
<script>
$('#image').mousemove( function(event) {
window.current_x = Math.round(event.pageX - $('#image').offset().left) ;
window.current_y = Math.round(event.pageY - $('#image').offset().top);
window.current_coords = window.current_x + ', ' + window.current_y;
$('#edit_instants_now').html('Current position: ' + window.current_coords + '.');
}).mouseleave( function() {
$('#edit_instants_now').html(' ');
}).click( function() {
$('#edit_instants_click').html('Last click: ' + window.current_coords + '. ');
document.edit_instant.edit_instant_x.value = window.current_x;
document.edit_instant.edit_instant_y.value = window.current_y;
});
</script>
问题是我想获得原始图像的实际坐标而不是调整大小的坐标。
你有什么建议吗?感谢。
答案 0 :(得分:2)
var naturalWidth = 100;
$('#image').mousemove(function(event) {
var img = $('#image');
console.log(naturalWidth);
ratio = naturalWidth / img.width();
window.current_x = (event.pageX - img.offset().left) * ratio;
window.current_y = (event.pageY - img.offset().top) * ratio;
window.current_coords = window.current_x + ', ' + window.current_y;
$('#edit_instants_now').html('Current position: ' + window.current_coords + '.');
}).mouseleave(function() {
$('#edit_instants_now').html(' ');
}).click(function() {
$('#edit_instants_click').html('Last click: ' + window.current_coords + '. ');
document.edit_instant.edit_instant_x.value = window.current_x;
document.edit_instant.edit_instant_y.value = window.current_y;
});
$('img').on('load', function(e) {
naturalWidth = e.target.naturalWidth;
})
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<img id="image" src="http://dummyimage.com/600x400/000/fff" width="100">
<form name="edit_instant">
<div id="edit_instants_now"></div>
<div id="edit_instants_click"></div>
<input name="edit_instant_x">
<input name="edit_instant_y">
</form>
&#13;
答案 1 :(得分:1)
获取原始图像的大小,将其除以已调整大小的图像的大小 - 这将为您提供scale factor
,然后将点击的已调整大小的图像的x,y坐标乘以比例因子。
希望这有帮助。