J'ai donc ce violon qui explique totalement mon problème.Redimensionner le canevas avec CSS redresse l'action de la souris
La JS
var w = this.w * this.scale;
var h = this.h * this.scale;
var x = this.x - w * .5;
var y = this.y - h * .5;
//standard Canvas rotation operation
ctx.save();
ctx.translate(this.x, this.y);
ctx.rotate(this.rotation * Math.PI/180);
ctx.fillStyle = this.fillStyle;
ctx.fillRect(w * -0.5, h * -0.5, w, h);
ctx.restore();
Peut-être que les directions de ce violon va hel comprendre ce que la toile répond. http://jsfiddle.net/hph4e/10/ – Shouvik