87

我正在创建一个跨浏览器兼容的旋转(ie9+),我在jsfiddle中有以下代码

$(document).ready(function () { 
    DoRotate(30);
    AnimateRotate(30);
});

function DoRotate(d) {

    $("#MyDiv1").css({
          '-moz-transform':'rotate('+d+'deg)',
          '-webkit-transform':'rotate('+d+'deg)',
          '-o-transform':'rotate('+d+'deg)',
          '-ms-transform':'rotate('+d+'deg)',
          'transform': 'rotate('+d+'deg)'
     });  
}

function AnimateRotate(d) {

        $("#MyDiv2").animate({
          '-moz-transform':'rotate('+d+'deg)',
          '-webkit-transform':'rotate('+d+'deg)',
          '-o-transform':'rotate('+d+'deg)',
          '-ms-transform':'rotate('+d+'deg)',
          'transform':'rotate('+d+'deg)'
     }, 1000); 
}

CSS 和 HTML 非常简单,仅用于演示:

.SomeDiv{
    width:50px;
    height:50px;       
    margin:50px 50px;
    background-color: red;}

<div id="MyDiv1" class="SomeDiv">test</div>
<div id="MyDiv2" class="SomeDiv">test</div>

旋转在使用时有效,.css()但在使用时无效.animate();为什么会这样,有没有办法解决它?

谢谢。

4

7 回答 7

234

CSS-Transforms 还不能用 jQuery 制作动画。你可以这样做:

function AnimateRotate(angle) {
    // caching the object for performance reasons
    var $elem = $('#MyDiv2');

    // we use a pseudo object for the animation
    // (starts from `0` to `angle`), you can name it as you want
    $({deg: 0}).animate({deg: angle}, {
        duration: 2000,
        step: function(now) {
            // in the step-callback (that is fired each step of the animation),
            // you can use the `now` paramter which contains the current
            // animation-position (`0` up to `angle`)
            $elem.css({
                transform: 'rotate(' + now + 'deg)'
            });
        }
    });
}

您可以在此处阅读有关步骤回调的更多信息:http: //api.jquery.com/animate/#step

http://jsfiddle.net/UB2XR/23/

而且,顺便说一句:您不需要使用 jQuery 1.7+ 为 css3 转换添加前缀

更新

您可以将其包装在一个 jQuery 插件中,以使您的生活更轻松:

$.fn.animateRotate = function(angle, duration, easing, complete) {
  return this.each(function() {
    var $elem = $(this);

    $({deg: 0}).animate({deg: angle}, {
      duration: duration,
      easing: easing,
      step: function(now) {
        $elem.css({
           transform: 'rotate(' + now + 'deg)'
         });
      },
      complete: complete || $.noop
    });
  });
};

$('#MyDiv2').animateRotate(90);

http://jsbin.com/ofagog/2/edit

更新2

我对其进行了一些优化,以使easing,durationcomplete无关紧要的顺序。

$.fn.animateRotate = function(angle, duration, easing, complete) {
  var args = $.speed(duration, easing, complete);
  var step = args.step;
  return this.each(function(i, e) {
    args.complete = $.proxy(args.complete, e);
    args.step = function(now) {
      $.style(e, 'transform', 'rotate(' + now + 'deg)');
      if (step) return step.apply(e, arguments);
    };

    $({deg: 0}).animate({deg: angle}, args);
  });
};

更新 2.1

感谢matteo,他注意到this完整的 -context存在问题callback。如果通过在每个节点上绑定回调来修复它。jQuery.proxy

我在Update 2之前已将该版本添加到代码中。

更新 2.2

如果您想做一些类似来回切换旋转的操作,这是一个可能的修改。我只是在函数中添加了一个 start 参数并替换了这一行:

$({deg: start}).animate({deg: angle}, args);

如果有人知道如何使所有用例更通用,无论他们是否想设置起始学位,请进行适当的编辑。


用法...很简单!

主要有两种方法可以达到预期的结果。但首先,让我们看一下论点:

jQuery.fn.animateRotate(angle, duration, easing, complete)

除了“角度”之外,它们都是可选的并且回退到默认的jQuery.fn.animate-properties:

duration: 400
easing: "swing"
complete: function () {}

第一

这种方式是短的,但是我们传递的参数越多看起来有点不清楚。

$(node).animateRotate(90);
$(node).animateRotate(90, function () {});
$(node).animateRotate(90, 1337, 'linear', function () {});

第二

如果参数超过三个,我更喜欢使用对象,所以我最喜欢这种语法:

$(node).animateRotate(90, {
  duration: 1337,
  easing: 'linear',
  complete: function () {},
  step: function () {}
});
于 2013-03-03T21:29:14.720 回答
18

谢谢yckart!伟大的贡献。我更加充实了你的插件。添加了 startAngle 以实现完全控制和跨浏览器 css。

$.fn.animateRotate = function(startAngle, endAngle, duration, easing, complete){
    return this.each(function(){
        var elem = $(this);

        $({deg: startAngle}).animate({deg: endAngle}, {
            duration: duration,
            easing: easing,
            step: function(now){
                elem.css({
                  '-moz-transform':'rotate('+now+'deg)',
                  '-webkit-transform':'rotate('+now+'deg)',
                  '-o-transform':'rotate('+now+'deg)',
                  '-ms-transform':'rotate('+now+'deg)',
                  'transform':'rotate('+now+'deg)'
                });
            },
            complete: complete || $.noop
        });
    });
};
于 2013-07-10T19:23:44.390 回答
10

如果您通过 jQuery 处理 CSS3 动画,jQuery 传输可能会让您的生活更轻松。

编辑 2014 年 3 月 (因为我的建议自发布以来一直在上下投票)

让我解释一下为什么我最初暗示上面的插件:

在性能方面更新DOM每个步骤(即$.animate)并不理想。它可以工作,但很可能会比纯CSS3 过渡CSS3 动画慢。

这主要是因为如果您指示从开始到结束的过渡将是什么样子,浏览器就有机会提前思考。

为此,例如,您可以为过渡的每个状态创建一个 CSS 类,并且只使用 jQuery 来切换动画状态。

这通常非常简洁,因为您可以将动画与 CSS 的其余部分一起调整,而不是将其与业务逻辑混为一谈:

// initial state
.eye {
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
   // etc.

   // transition settings
   -webkit-transition: -webkit-transform 1s linear 0.2s;
   -moz-transition: -moz-transform 1s linear 0.2s;
   transition: transform 1s linear 0.2s;
   // etc.
}

// open state    
.eye.open {

   transform: rotate(90deg);
}

// Javascript
$('.eye').on('click', function () { $(this).addClass('open'); });

如果任何转换参数是动态的,您当然可以使用 style 属性:

$('.eye').on('click', function () { 
    $(this).css({ 
        -webkit-transition: '-webkit-transform 1s ease-in',
        -moz-transition: '-moz-transform 1s ease-in',
        // ...

        // note that jQuery will vendor prefix the transform property automatically
        transform: 'rotate(' + (Math.random()*45+45).toFixed(3) + 'deg)'
    }); 
});

MDN上有关 CSS3 转换的更多详细信息。

然而,还有一些其他的事情要记住,如果你有复杂的动画、链接等,这一切都会变得有点棘手,而jQuery Transit只是做了所有棘手的事情:

$('.eye').transit({ rotate: '90deg'}); // easy huh ?
于 2013-03-03T21:38:16.507 回答
4

要实现包括 IE7+ 在内的跨浏览器,您需要使用转换矩阵扩展插件。由于供应商前缀是在 jquery-1.8+ 的 jQuery 中完成的,我将把它留给transform属性。

$.fn.animateRotate = function(endAngle, options, startAngle)
{
    return this.each(function()
    {
        var elem = $(this), rad, costheta, sintheta, matrixValues, noTransform = !('transform' in this.style || 'webkitTransform' in this.style || 'msTransform' in this.style || 'mozTransform' in this.style || 'oTransform' in this.style),
            anims = {}, animsEnd = {};
        if(typeof options !== 'object')
        {
            options = {};
        }
        else if(typeof options.extra === 'object')
        {
            anims = options.extra;
            animsEnd = options.extra;
        }
        anims.deg = startAngle;
        animsEnd.deg = endAngle;
        options.step = function(now, fx)
        {
            if(fx.prop === 'deg')
            {
                if(noTransform)
                {
                    rad = now * (Math.PI * 2 / 360);
                    costheta = Math.cos(rad);
                    sintheta = Math.sin(rad);
                    matrixValues = 'M11=' + costheta + ', M12=-'+ sintheta +', M21='+ sintheta +', M22='+ costheta;
                    $('body').append('Test ' + matrixValues + '<br />');
                    elem.css({
                        'filter': 'progid:DXImageTransform.Microsoft.Matrix(sizingMethod=\'auto expand\','+matrixValues+')',
                        '-ms-filter': 'progid:DXImageTransform.Microsoft.Matrix(sizingMethod=\'auto expand\','+matrixValues+')'
                    });
                }
                else
                {
                    elem.css({
                        //webkitTransform: 'rotate('+now+'deg)',
                        //mozTransform: 'rotate('+now+'deg)',
                        //msTransform: 'rotate('+now+'deg)',
                        //oTransform: 'rotate('+now+'deg)',
                        transform: 'rotate('+now+'deg)'
                    });
                }
            }
        };
        if(startAngle)
        {
            $(anims).animate(animsEnd, options);
        }
        else
        {
            elem.animate(animsEnd, options);
        }
    });
};

注意:参数optionsstartAngle是可选的,如果你只需要设置startAngleuse{}nullfor options

示例用法:

var obj = $(document.createElement('div'));
obj.on("click", function(){
    obj.stop().animateRotate(180, {
        duration: 250,
        complete: function()
        {
            obj.animateRotate(0, {
                duration: 250
            });
        }
    });
});
obj.text('Click me!');
obj.css({cursor: 'pointer', position: 'absolute'});
$('body').append(obj);

另请参阅此jsfiddle以获取演示。

更新:您现在也可以传入extra: {}选项。这将使您能够同时执行其他动画。例如:

obj.animateRotate(90, {extra: {marginLeft: '100px', opacity: 0.5}});

这会将元素旋转 90 度,并将其向右移动 100 像素,并在动画期间同时使其半透明。

于 2013-10-17T11:27:52.353 回答
2

这是我的解决方案:

var matrixRegex = /(?:matrix\(|\s*,\s*)([-+]?[0-9]*\.?[0-9]+(?:[e][-+]?[0-9]+)?)/gi;

var getMatches = function(string, regex) {
    regex || (regex = matrixRegex);
    var matches = [];
    var match;
    while (match = regex.exec(string)) {
        matches.push(match[1]);
    }
    return matches;
};

$.cssHooks['rotation'] = {
    get: function(elem) {
        var $elem = $(elem);
        var matrix = getMatches($elem.css('transform'));
        if (matrix.length != 6) {
            return 0;
        }
        return Math.atan2(parseFloat(matrix[1]), parseFloat(matrix[0])) * (180/Math.PI);
    }, 
    set: function(elem, val){
        var $elem = $(elem);
        var deg = parseFloat(val);
        if (!isNaN(deg)) {
            $elem.css({ transform: 'rotate(' + deg + 'deg)' });
        }
    }
};
$.cssNumber.rotation = true;
$.fx.step.rotation = function(fx) {
    $.cssHooks.rotation.set(fx.elem, fx.now + fx.unit);
};

然后你可以在默认的动画 fkt 中使用它:

//rotate to 90 deg cw
$('selector').animate({ rotation: 90 });

//rotate to -90 deg ccw
$('selector').animate({ rotation: -90 });

//rotate 90 deg cw from current rotation
$('selector').animate({ rotation: '+=90' });

//rotate 90 deg ccw from current rotation
$('selector').animate({ rotation: '-=90' });
于 2015-05-09T17:54:05.457 回答
1

另一个答案,因为 jQuery.transit 与 jQuery.easing 不兼容。此解决方案作为 jQuery 扩展提供。更通用的是,旋转是一种特殊情况:

$.fn.extend({
    animateStep: function(options) {
        return this.each(function() {
            var elementOptions = $.extend({}, options, {step: options.step.bind($(this))});
            $({x: options.from}).animate({x: options.to}, elementOptions);
        });
    },
    rotate: function(value) {
        return this.css("transform", "rotate(" + value + "deg)");
    }
});

用法很简单:

$(element).animateStep({from: 0, to: 90, step: $.fn.rotate});
于 2017-03-22T18:57:35.550 回答
0

没有带有 setInterval 的插件跨浏览器:

                        function rotatePic() {
                            jQuery({deg: 0}).animate(
                               {deg: 360},  
                               {duration: 3000, easing : 'linear', 
                                 step: function(now, fx){
                                   jQuery("#id").css({
                                      '-moz-transform':'rotate('+now+'deg)',
                                      '-webkit-transform':'rotate('+now+'deg)',
                                      '-o-transform':'rotate('+now+'deg)',
                                      '-ms-transform':'rotate('+now+'deg)',
                                      'transform':'rotate('+now+'deg)'
                                  });
                              }
                            });
                        }

                        var sec = 3;
                        rotatePic();
                        var timerInterval = setInterval(function() {
                            rotatePic();
                            sec+=3;
                            if (sec > 30) {
                                clearInterval(timerInterval);
                            }
                        }, 3000);
于 2016-03-15T10:13:08.887 回答