jQuery 1.9.1源碼分析系列(十五)動(dòng)畫處理之緩動(dòng)動(dòng)畫核心Tween
在jQuery內(nèi)部函數(shù)Animation中調(diào)用到了createTweens()來創(chuàng)建緩動(dòng)動(dòng)畫組,創(chuàng)建完成后的結(jié)果為:

可以看到上面的緩動(dòng)動(dòng)畫組有四個(gè)原子動(dòng)畫組成。每一個(gè)原子動(dòng)畫的信息都包含在里面了。
仔細(xì)查看createTweens函數(shù),實(shí)際上就是遍歷調(diào)用了tweeners ["*"]的數(shù)組中的函數(shù)(實(shí)際上就只有一個(gè)元素)。
function createTweens( animation, props ) {
jQuery.each( props, function( prop, value ) {
var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
index = 0,
length = collection.length;
for ( ; index < length; index++ ) {
if ( collection[ index ].call( animation, prop, value ) ) {
// we're done with this property
return;
}
}
});
}
再次查看這個(gè)tweeners ["*"][0]函數(shù),主要代碼如下
function( prop, value ) {
var end, unit,
//根據(jù)css特征值獲取緩動(dòng)動(dòng)畫結(jié)構(gòu)
tween = this.createTween( prop, value ),
parts = rfxnum.exec( value ),
target = tween.cur(),
start = +target || 0,
scale = 1,
maxIterations = 20;
if ( parts ) {
end = +parts[2];
unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" );
//非像素單位的屬性
if ( unit !== "px" && start ) {
// 從一個(gè)非零起點(diǎn)開始迭代,
//對于當(dāng)前屬性,如果它使用相同的單位這一過程將是微不足道
// 后備為end,或一個(gè)簡單的常量
start = jQuery.css( tween.elem, prop, true ) || end || 1;
do {
//如果前一次迭代為零,加倍,直到我們得到*東西*
//使用字符串倍增因子,所以我們不會(huì)偶然看到scale不改變
scale = scale || ".5";
// 調(diào)整和運(yùn)行
start = start / scale;
jQuery.style( tween.elem, prop, start + unit );
// 更新scale, 默認(rèn)0或NaN從tween.cur()獲取
// 跳出循環(huán),如果scale不變或完成時(shí), 或者我們已經(jīng)覺得已經(jīng)足夠了
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
}
tween.unit = unit;
tween.start = start;
//如果提供了+=/-=記號(hào),表示我們正在做一個(gè)相對的動(dòng)畫
tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end;
}
return tween;
}]
};
可以看出除了hide/show兩種動(dòng)畫外的其他動(dòng)畫都經(jīng)過tweeners ["*"][0]這個(gè)函數(shù)封裝了動(dòng)畫組。其中有幾個(gè)關(guān)鍵的數(shù)組start/end/unit。特別是對非像素單位的動(dòng)畫start值獲取費(fèi)了一番功夫。
還有一個(gè)比較關(guān)鍵的地方是都用了this.createTween獲取單個(gè)css特征的基礎(chǔ)的動(dòng)畫特征。而animation. createTween中直接調(diào)用jQuery.Tween來處理。接下來我們詳解之。
a.jQuery.Tween
--------------------------------------------------------------------------------
jQuery.Tween的結(jié)構(gòu)和jQuery類似
function Tween( elem, options, prop, end, easing ) {
return new Tween.prototype.init( elem, options, prop, end, easing );
}
jQuery.Tween = Tween;
Tween.prototype = {
constructor: Tween,
init: function( elem, options, prop, end, easing, unit ) {
this.elem = elem;
this.prop = prop;
this.easing = easing || "swing";
this.options = options;
this.start = this.now = this.cur();
this.end = end;
this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
},
cur: function() {...},
run: function( percent ) {...}
};
Tween.prototype.init.prototype = Tween.prototype;
是不是有一種很熟悉的趕腳。
里面cur函數(shù)用來獲取當(dāng)前的css特征值
cur: function() {
var hooks = Tween.propHooks[ this.prop ];
return hooks && hooks.get ?
hooks.get( this ) :
Tween.propHooks._default.get( this );
},
而run函數(shù)則會(huì)在每個(gè)動(dòng)畫時(shí)間點(diǎn)上對正在進(jìn)行的動(dòng)畫的每個(gè)特征值進(jìn)行處理。
主要是兩個(gè)步驟:
1.計(jì)算動(dòng)畫當(dāng)前進(jìn)度pos和動(dòng)畫當(dāng)前位置now
//如果有動(dòng)畫時(shí)長則使用jQuery.easing計(jì)算出緩動(dòng)動(dòng)畫進(jìn)度eased,否則進(jìn)度eased為percent
//并根據(jù)進(jìn)度得到當(dāng)前動(dòng)畫位置now
if ( this.options.duration ) {
this.pos = eased = jQuery.easing[ this.easing ](
percent, this.options.duration * percent, 0, 1, this.options.duration
);
} else {
this.pos = eased = percent;
}
this.now = ( this.end - this.start ) * eased + this.start;
2.根據(jù)當(dāng)前進(jìn)度情況設(shè)置css特征值
//設(shè)置css特征值
if ( hooks && hooks.set ) {
hooks.set( this );
} else {
Tween.propHooks._default.set( this );
}
return this;
可見生成緩動(dòng)動(dòng)畫這一步處理才是整個(gè)動(dòng)畫的核心:
創(chuàng)建緩動(dòng)動(dòng)畫組,每一個(gè)原子動(dòng)畫都包含了每一個(gè)原子css屬性動(dòng)畫的各種必要參數(shù)以及動(dòng)畫函數(shù)

不同的是hide/show直接在defaultPrefilter中創(chuàng)建了這個(gè)緩動(dòng)動(dòng)畫組(所有的屬性都默認(rèn)是px單位),其他的動(dòng)畫在調(diào)用createTweens時(shí)創(chuàng)建緩動(dòng)動(dòng)畫組。
還記不記得在創(chuàng)建動(dòng)畫的時(shí)候有個(gè)tick函數(shù),這個(gè)tick函數(shù)會(huì)在每隔一個(gè)步長的時(shí)間調(diào)用一次
tick = function() {
...
length = animation.tweens.length;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( percent );
}
...
}
看到?jīng)],每一個(gè)原子動(dòng)畫有自己的run函數(shù)來執(zhí)行自己的動(dòng)畫,這在創(chuàng)建緩動(dòng)動(dòng)畫組的時(shí)候就建好了的。
好了,整理一下動(dòng)畫的整個(gè)核心流程:
1.先根據(jù)參數(shù)調(diào)用jQuery.speed獲取動(dòng)畫相關(guān)參數(shù),得到一個(gè)類似如下的對象;并且生成動(dòng)畫執(zhí)行函數(shù)doAnimation使用.queue壓入隊(duì)列并馬上執(zhí)行
opt = {
complete: fnction(){...},//動(dòng)畫執(zhí)行完成的回調(diào)
duration: 400,//動(dòng)畫執(zhí)行時(shí)長
easing: "swing",//動(dòng)畫效果
queue: "fx",//動(dòng)畫隊(duì)列
old: false/fnction(){...},
}
2.doAnimation中調(diào)用創(chuàng)建一個(gè)延時(shí)對象,使用延時(shí)對象的promise方法構(gòu)造一個(gè)動(dòng)畫對象animation(延時(shí)對象+動(dòng)畫特征列表),最后給animation添加動(dòng)畫執(zhí)行完成后的回調(diào)函數(shù)。
3.調(diào)用jQuery內(nèi)部函數(shù)proFilter修正css特征名以便能被當(dāng)前瀏覽器識(shí)別,并將某些復(fù)合css特征分解(比如padding分解成paddingTop / Right/ Bottom/ Left).
4.調(diào)用jQuery內(nèi)部函數(shù)defaultPrefilter做動(dòng)畫能夠正常運(yùn)行前提條件修正:比如對height/width動(dòng)畫display和overflow需要特定的值。特別需要注意的是
對于show/hide動(dòng)畫,在之前就調(diào)用genFx將需要執(zhí)行動(dòng)畫的css特征提取了出來,在defaultPrefilter函數(shù)里直接調(diào)用動(dòng)畫對象animation.createTween給每一個(gè)CSS動(dòng)畫屬性添加對應(yīng)的緩動(dòng)動(dòng)畫對象(包括動(dòng)畫參數(shù)和動(dòng)畫函數(shù)如run)壓入緩動(dòng)動(dòng)畫組animation.tweens中
5.調(diào)用jQuery內(nèi)部函數(shù)createTweens將除開show/hide之外的動(dòng)畫每一個(gè)css動(dòng)畫特征使用animation.createTween創(chuàng)建緩動(dòng)動(dòng)畫對象(包括動(dòng)畫參數(shù)和動(dòng)畫函數(shù)如run),壓入緩動(dòng)動(dòng)畫組animation.tweens中
6.啟動(dòng)動(dòng)畫計(jì)時(shí),在每個(gè)時(shí)間點(diǎn)上執(zhí)行tick函數(shù)來給相應(yīng)的css特征值設(shè)置運(yùn)動(dòng)值。
其中css特征值運(yùn)動(dòng)的進(jìn)度百分比是
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), temp = remaining / animation.duration || 0, percent = 1 - temp
得到的percent是符合時(shí)間規(guī)律的。代入這個(gè)percent設(shè)置準(zhǔn)確的css特征值,以刷新動(dòng)畫顯示。
8.動(dòng)畫完成后調(diào)用動(dòng)畫完成回調(diào)。
關(guān)于小編給大家分享的jQuery 1.9.1源碼分析系列(十五)動(dòng)畫處理之緩動(dòng)動(dòng)畫核心Tween 全部內(nèi)容就到此結(jié)束了,有問題歡迎給我留言我會(huì)在第一時(shí)間和大家取得聯(lián)系的。
- jQuery1.9.1針對checkbox的調(diào)整方法(prop)
- jQuery 1.9.1源碼分析系列(十)事件系統(tǒng)之綁定事件
- jQuery-1.9.1源碼分析系列(十)事件系統(tǒng)之事件體系結(jié)構(gòu)
- jQuery-1.9.1源碼分析系列(十)事件系統(tǒng)之事件包裝
- Jquery1.9.1源碼分析系列(六)延時(shí)對象應(yīng)用之jQuery.ready
- jQuery 1.9.1源碼分析系列(十三)之位置大小操作
- jQuery 1.9.1源碼分析系列(十四)之常用jQuery工具
- jQuery 1.9.1源碼分析系列(十五)之動(dòng)畫處理
- Jquery1.9.1源碼分析系列(十五)動(dòng)畫處理之外篇
相關(guān)文章
Jquery 監(jiān)視按鍵,按下回車鍵觸發(fā)某方法的實(shí)現(xiàn)代碼
這篇文章主要介紹了jquery監(jiān)視按鍵,當(dāng)按下回車鍵時(shí)觸發(fā)事件的一個(gè)例子,有需要的朋友可以參考下2014-05-05
flash+jQuery實(shí)現(xiàn)可關(guān)閉及重復(fù)播放的壓頂廣告
本文給大家分享的是仿游戲門戶網(wǎng)站可關(guān)閉及重復(fù)播放泰山壓頂廣告是一款基于jquery實(shí)現(xiàn)的打開網(wǎng)頁緩慢下拉廣告代碼。有需要的小伙伴可以參考下。2015-04-04
jQuery實(shí)現(xiàn)高度靈活的表單驗(yàn)證功能示例【無UI】
這篇文章主要介紹了jQuery實(shí)現(xiàn)高度靈活的表單驗(yàn)證功能,涉及jQuery正則判斷與頁面元素動(dòng)態(tài)操作相關(guān)使用技巧,需要的朋友可以參考下2020-04-04
選擇TreeView控件的樹狀數(shù)據(jù)節(jié)點(diǎn)的JS方法(jquery)
前些日子為了提高人性化選擇樹狀權(quán)限的功能,根據(jù)樹的結(jié)構(gòu)用jquery寫了個(gè)方法。2010-02-02
jquery 無限級(jí)下拉菜單的簡單實(shí)現(xiàn)代碼
本篇文章主要是對jquery 無限級(jí)下拉菜單的簡單實(shí)現(xiàn)代碼進(jìn)行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助2014-02-02

