had no time to answer before.
Here is what I came up with:
(function () {
var $container = $('#container');
var $slider = $('#slider');
var sliderW2 = $slider.width()/2;
var sliderH2 = $slider.height()/2;
var radius = 200;
var deg = 0;
var elP = $('#container').offset();
var elPos = { x: elP.left, y: elP.top};
var X = 0, Y = 0;
var mdown = false;
$('#container')
.mousedown(function (e) { mdown = true; })
.mouseup(function (e) { mdown = false; })
.mousemove(function (e) {
if (mdown) {
var mPos = {x: e.clientX-elPos.x, y: e.clientY-elPos.y};
var atan = Math.atan2(mPos.x-radius, mPos.y-radius);
deg = -atan/(Math.PI/180) + 180; // final (0-360 positive) degrees from mouse position
X = Math.round(radius* Math.sin(deg*Math.PI/180));
Y = Math.round(radius* -Math.cos(deg*Math.PI/180));
$slider.css({ left: X+radius-sliderW2, top: Y+radius-sliderH2 });
// AND FINALLY apply exact degrees to ball rotation
$slider.css({ WebkitTransform: 'rotate(' + deg + 'deg)'});
$slider.css({ '-moz-transform': 'rotate(' + deg + 'deg)'});
//
// PRINT DEGREES
$('#test').html('angle deg= '+deg);
}
});
})();
To calculate the degrees first we need to get the mouse coordinates inside the parent:
mouseCoordX = clientX - #container.offset().left
mouseCoordY = clientY - #container.offset().top
To get the center of our element we'll add the radius to our calculation. (radius = half width/height)** and calculate the Y and X atan2(X, Y) (!yes, inverted!)**:
atan = Math.atan2( mouseCoordX - radius , mouseCoordY - radius)
Now we have to transform the atanized small floated number to degrees (angle) keeping it positive:
degrees = -atan / (PI/180) +180
(Use '-atan2' instead of just 'atan2' to not get a reverse motion)
That's it! now we have all-around degrees 0-360!
To translate back the degrees we calculated from a mouse position just do:
X = Math.round(radius* Math.sin(deg*Math.PI/180));
Y = Math.round(radius* -Math.cos(deg*Math.PI/180));
...and use X and Y to set the element css positions.