$("#test").mousemove(function(e){
var percx = e.offsetX/ $(this).width() * 100;
var percy = e.offsetY/ $(this).height() * 100;
$('#vystup').html(percx + " | " + percy + " perc");
});
<img src="https://solarsystem.nasa.gov/system/basic_html_elements/11561_Sun.png" id="test">
<div id="vystup"></div>