javascript動畫對象支援加速、減速、緩入、緩出的實現代碼

來源:互聯網
上載者:User

調用介面: 複製代碼 代碼如下:/**
* @param elem {HTMLElement} 執行動畫的HTML元素
* @param params {JSON} 動畫執行過過程中需要修改的HTML 屬性
* @param duration {Number} 可選,動畫執行時間,單位毫秒
* @param easing {String} 可選,動畫執行的方式,緩入easeIn、緩出easeOut
* @param callback {Function} 可選,動畫執行完成時的回呼函數
* @return
*/
effect.animate(elem, params, duration, easing, callback);

使用它用不了20行代碼就可以做一個產品圖片減速淡出、加速淡入的轉場效果點擊這裡查看示範效果 複製代碼 代碼如下://輔助對象,讀/寫DOM元素屬性
var attribute = {
get: function(elem, attr){
var val;
if(elem.currentStyle){
if(attr === "opacity") {
val = elem.filters.alpha[attr];
}else {
val = elem.currentStyle[attr];
}
}
else{
val = getComputedStyle(elem)[attr];
if(attr === "opacity") {
val = 100 * val;
}
}
return val;
},
set: function(elem, attr, val){
if(attr=='opacity'){
elem.style.filter = 'alpha(opacity='+ (val) +')';
elem.style.opacity = (val)/100;
}
else{
elem.style[attr] = val + 'px';
}
}
};
/*
* 描述: tween動畫演算法。
* @param Number t: 動畫已經執行的時間(實際上時執行多少次/幀數)
* @param Number b: 起始位置
* @param Number c: 終止位置
* @param Number d: 從起始位置到終止位置的經過時間(實際上時執行多少次/幀數)
*/
var tween = {
//緩入
easeIn: function (t, b, c, d){
return c * (t/=d) * t + b;
},
//緩出
easeOut: function (t,b,c,d){
return -c * (t/=d) * (t-2) + b;
}
};
//動畫對象
var effect = {
animate: function(elem, params, duration, easing, callback){
var dt = new Date().getTime(),
b = 0,
c = 0,
d = duration || 500,
fps = 1000/60;
var changes = [];
for(var attr in params){
b = parseFloat(attribute.get(elem, attr));
c = params[attr] - b;
changes.push({
attr: attr,
b: b,
c: c
});
}
easing = easing || "easeOut";
callback = callback || new Function;
setTimeout(function(){
var t = new Date().getTime() - dt;
var b, c, attr;
for(var i=0; i<changes.length; i++){
b = changes[i].b;
c = changes[i].c;
attr = changes[i].attr;
attribute.set(elem, attr, tween[easing](t, b, c, d));
if(d <= t){
attribute.set(elem, attr, params[attr]);
callback();
return;
}
}
setTimeout(arguments.callee, fps);
}, fps);
}
};
//by rentj1@163.com

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.