jQuery.Animator
- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://plugins.jquery.com/project/jqueryanimator
软件介绍
A easy way to create animations with jQuery
This plugin provide a easy way to create animations with jQuery and using the central timer from jQuery you don't overload your pages and get the best experience with animations.
<div id="Walker" style="position: relative;left: 0;width: 100px;height: 50px;background: #000;color: #fff">Animation Test</div>
<script language="JavaScript">
<!--
function AnimateWalker(Walker, GoEnd){
// Left Walk 1 by 1
newLeft = parseInt(Walker.css("left")) + 1;
// Check GoEnd is true to go to end of the animation
if(GoEnd) newLeft = 400;
Walker.css("left", newLeft);
// if the setup left keep less then 400 whe continue the animation
return (newLeft < 400);
}
$(function(){
$("#Walker").animator(10, AnimateWalker);
});
//-->
</script>
Plugin page:
http://gsaraiva.projects.pro.br/?page_id=44
My site, I use jQuery.Animator ^^
http://gsaraiva.projects.pro.br/
计算机程序设计艺术(第3卷)
Donald E.Knuth / 苏运霖 / 国防工业出版社 / 2002-9 / 98.00元
第3卷的头一次修订对经典计算机排序和查找技术做了最全面的考察。它扩充了第1卷对数据结构的处理,以将大小数据库和内外存储器一并考虑;遴选了精心核验的计算机方法,并对其效率做了定量分析。第3卷的突出特点是对“最优排序”一节的修订和对排列论与通用散列法的讨论。一起来看看 《计算机程序设计艺术(第3卷)》 这本书的介绍吧!