私はクロスブラウザ互換のローテーション(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()
を使用しているときは機能しません。それはなぜですか、それを修正する方法はありますか?
ありがとう。
CSS変換はまだ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
そして、ところで:css3変換の前にjQuery 1.7+を付ける必要はありません。
これを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
easing
、duration
、complete
の順序が重要でないように、少し最適化しました。
$.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);
});
};
Complete -this
内のcallback
- contextの問題を指摘した matteo に感謝します。 bindingで修正した場合、各ノードでjQuery.proxy
を使用したコールバック。
以前にUpdate 2からコードにエディションを追加しました。
これは、回転を前後に切り替えるなどの操作を行う場合に可能な変更です。関数に開始パラメーターを追加して、次の行を置き換えました。
$({deg: start}).animate({deg: angle}, args);
開始度を設定するかどうかにかかわらず、すべてのユースケースでこれをより一般的にする方法を誰かが知っている場合は、適切な編集を行ってください。
主に、目的の結果を得るには2つの方法があります。しかし、最初は引数を見てみましょう。
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 () {});
引数が3つ以上ある場合はオブジェクトを使用することを好みます。そのため、この構文は私の好みです。
$(node).animateRotate(90, {
duration: 1337,
easing: 'linear',
complete: function () {},
step: function () {}
});
ありがとうyckart!多大な貢献。プラグインをもう少し具体化しました。フルコントロールとクロスブラウザCSSのstartAngleが追加されました。
$.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
});
});
};
jQuery transit は、jQueryを介してCSS3アニメーションを扱う場合、おそらくあなたの生活を楽にします。
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 ?
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);
}
});
};
注:options
を設定する必要がある場合は、startAngle
に{}
またはstartAngle
のみを使用する場合、パラメーターnull
および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 も参照してください。
Update:オプションでextra: {}
を渡すこともできるようになりました。これにより、他のアニメーションを同時に実行できるようになります。例えば:
obj.animateRotate(90, {extra: {marginLeft: '100px', opacity: 0.5}});
これにより、要素が90度回転し、100pxで右に移動し、アニメーション中にすべて同時に半透明になります。
これは私の解決策です:
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' });
もう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});
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);