从一个地方飞到另一个地方
把jQuery的animate方法封装了一下,支持设置fly时间、是否fade away,支持easing库,支持回调
具体使用方法:
$("#from").flyTo("#to",1000,{fade:'true',easing:'backout',callback:function(){
ended();
}});
ended(); 是回调时调用的函数,fade为true在fly的同时会慢慢消失
http://jqueryplugin.googlecode.com/files/FlyTo.zip
把jQuery的animate方法封装了一下,支持设置fly时间、是否fade away,支持easing库,支持回调
具体使用方法:
$("#from").flyTo("#to",1000,{fade:'true',easing:'backout',callback:function(){
ended();
}});
ended(); 是回调时调用的函数,fade为true在fly的同时会慢慢消失
http://jqueryplugin.googlecode.com/files/FlyTo.zip
Leave a comment