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/
Adobe Flex 大师之路
2009-5 / 69.80元
《Adobe Flex大师之路》以Flex 3.0为基础,涵盖了Flex技术的核心内容。《Adobe Flex 大师之路》能够帮助您你学习并掌握使用Flex所需的牢靠和全面的知识基础,告诉您你如何把这些知识将之转化为代码,并在实际项目中变通应用。通过学习《Adobe Flex 大师之路》,您你可以利用Flex来构建企业级应用的表现层、改善应用的用户体验、集成企业端的复杂服务。这本书是为所有希望学习......一起来看看 《Adobe Flex 大师之路》 这本书的介绍吧!
