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>
菜鸟侦探挑战数据分析
[日] 石田基广 / 支鹏浩 / 人民邮电出版社 / 2017-1 / 42
本书以小说的形式展开,讲述了主人公俵太从大学文科专业毕业后进入征信所,从零开始学习数据分析的故事。书中以主人公就职的征信所所在的商业街为舞台,选取贴近生活的案例,将平均值、t检验、卡方检验、相关、回归分析、文本挖掘以及时间序列分析等数据分析的基础知识融入到了生动有趣的侦探故事中,讲解由浅入深、寓教于乐,没有深奥的理论和晦涩的术语,同时提供了大量实际数据,使用免费自由软件RStudio引领读者进一步......一起来看看 《菜鸟侦探挑战数据分析》 这本书的介绍吧!
