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/
JavaScript DOM高级程序设计
Jeffrey Sambells、Aaron Gustafson / 李松峰、李雅雯 / 人民邮电出版社 / 2008-7 / 59.00元
本书注重理论与实践的结合,全面讲述高级的DOM 脚本编程。全书分为3 个部分:第一部分“深入理解DOM 脚本编程”,涉及W3C DOM 规范的各方面,包括非标准的浏览器支持和不支持的内容;第二部分“浏览器外部通信”,以Ajax 和客户端—服务器端通信为主题;第三部分“部分高级脚本编程资源”,集中介绍了一批第三方脚本编程资源,包括库和API。同时,每部分的最后一章都为案例研究,将学到的内容应用于实践......一起来看看 《JavaScript DOM高级程序设计》 这本书的介绍吧!
