我试图找到我的“旋转”物体在使用谷歌旋转插件时的角度。到目前为止,这是我的代码:
$('#spinnerButton a').bind('click', function(e) {
var deg = 1500 + Math.round(Math.random()*1500);
var rotation = function (){
$("#spinImg").rotate({
angle:0,
animateTo: deg,
duration: 6000
});
console.log (deg);
}
e.preventDefault();
rotation();
});
我可以得到它的学位。(高数字)但我试图使用 .getRotateAngle() 无济于事。我尝试将回调设置为 7000 并尝试仅使用 $(this).getRotateAngle(); 但同样,除了“0”的原始位置之外,什么也没有出现。