animation.js
395 Bytes
/**
* @author zzf
*/
var DiliAma = (function(){
this.append = function(_obj){
var _config = {
view : null,
str : '',
am : 'fadeIn'
};
_config = $.extend(_config, _obj);
$(_config.str).appendTo('.'+_config.view).hide().fadeIn(2000);
};
this.remove = function(_is){
var _view = $(_is);
_view.fadeOut(function(){
_view.remove();
});
};
return this;
})();