jQuery 插件 jAnimate
- 授权协议: MIT
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: https://github.com/renatorib/janimate
软件介绍
jAnimate 是一款帮助你在 jQuery 中使用 Animate.css 的插件。如果你想立刻中止动画效果,且保持该状态不变的话,推荐使用 jAnimate 。
示例:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>janimate example</title>
<link rel="stylesheet" href="https://cdn.rawgit.com/daneden/animate.css/master/animate.css">
</head>
<body>
<h1>Hello jAnimate</h1>
<button class="e1">swing</button>
<button class="e2">shake</button>
<button class="e3">fadeOut</button>
<button class="e4">fadeIn</button>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://cdn.rawgit.com/renatorib/janimate/master/dist/janimate.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.e1').click(function(){
$('h1').jAnimateOnce('swing');
});
$('.e2').click(function(){
$('h1').jAnimateOnce('shake');
});
$('.e3').click(function(){
$('h1').jAnimate('fadeOut');
});
$('.e4').click(function(){
$('h1').jAnimate('fadeIn', function(self, effect){
alert(effect + ' finish');
});
});
});
</script>
</body>
Ajax开发精要
柯自聪 / 电子工业出版社 / 2006 / 45.00
书籍目录: 概念篇 第1章 Ajax介绍 2 1.1 Ajax的由来 2 1.2 Ajax的定义 3 1.3 Web应用程序的解决方案 5 1.4 Ajax的工作方式 7 1.5 小结 8 第2章 B/S请求响应机制与Web开发模式 9 2.1 HTTP请求响应模型 9 2.2 B/S架构的请求响应机......一起来看看 《Ajax开发精要》 这本书的介绍吧!
