/*
* @title 角度計測
* @description 2点をクリックしてちゃんと計算する。角度とか。(右方向水平が0度)
* @include http://*
* @license MIT License
* @require jQuery
*/
var x1,y1,x2,y2,dx,dy;
var div = $(document.createElement('div'))
.css({
'width': '100%',
'height': '100%',
'position': 'absolute',
'z-index': '9999',
})
.toggle(
function(e){x1 = e.pageX; y1 = e.pageY;},
function(e){x2 = e.pageX; y2 = e.pageY;prompt('角度',calculate());$(this).remove()}
)
;
$('body').prepend(div);
function calculate(){
return Math.atan2(y2-y1, x2-x1)*180/Math.PI
}