0

我试图找到我的“旋转”物体在使用谷歌旋转插件时的角度。到目前为止,这是我的代码:

$('#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”的原始位置之外,什么也没有出现。

4

1 回答 1

0

jsFiddle

  $("#image").rotate({
      bind: {
          click: function () {
              var deg = 1500 + Math.round(Math.random() * 1500);
              $("#image").rotate({
                  angle: 0,
                  animateTo: deg,
                  duration: 6000,
                  callback: function() {
                        alert( $(this).getRotateAngle() % 360 );
                  }
              });
          }
      }
  });
于 2013-09-17T20:46:02.043 回答