這裏是代碼,我想要獲得旋轉角度。我正在旋轉錶盤周圍的圖像。除了當它達到270度時,我會得到所有的角度,它確實有些時髦的東西。角度變爲負值。它工作正常,從0到270,但我不能讓它的270間顯示角度360..Please給我一些建議旋轉角度
this.rotate = function(x){
this.node.style.MozTransform="rotate("+x+"deg)";
this.node.style.WebkitTransform="rotate("+x+"deg)";
this.node.style.OTransform="rotate("+x+"deg)";
this.node.style.msTransform="rotate("+x+"deg)";
this.node.style.Transform="rotate("+x+"deg)";
myintID = setInterval(function(){
//Math!
angleFromEye = Math.atan2((cursorLocation.y-self.my_y), cursorLocation.x- self.my_x)*(180/Math.PI)+ 90;
//Rotate
self.rotate(angleFromEye);
我的第一個建議是,問題將與'.rotate'函數,你沒有告訴我們。你是否想要粘貼更多的代碼? – 2012-08-13 13:44:23