jQuery 动画插件 aniAuto
- 授权协议: GPL
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: justinzzc.github.io/aniAuto
- 软件文档: https://github.com/justinzzc/aniAuto/blob/master/README.md
- 官方下载: https://github.com/justinzzc/aniAuto/archive/master.zip
软件介绍
aniAuto
一个基于 animate.css 的jquery插件,只需添加一些标签属性和一行js脚本就可以组合出复杂的动画效果.
配置项
可用配置项
初始隐藏 (attribute) ani-init-hide
延迟 (attribute) ani-delay
持续时长 (attribute) ani-duration
重复次数 (attribute) ani-iteration
触发元素 (attribute) ani-trigger
自动滚动 (attribute) ani-scroll ani-scroll-offset
基本使用方法
<head>
<link rel="stylesheet" href="css/animate.css">
<script src="js/jquery-1.12.3.min.js"></script>
<script src="js/aniAuto.js"></script>
</head>
<body>
...
<div id="item_1" class="ani-auto item tada" >
demo item
</div>
...
<script>
$(document).ready(function () {
$.aniAuto();
});
</script>
</body>将需要配置自动动画的dom节点配置class类
ani-auto.
运行效果:demo页面
构建高性能Web站点
郭欣 / 电子工业出版社 / 2012-6 / 75.00元
《构建高性能Web站点(修订版)》是畅销修订版,围绕如何构建高性能Web站点,从多个方面、多个角度进行了全面的阐述,几乎涵盖了Web站点性能优化的所有内容,包括数据的网络传输、服务器并发处理能力、动态网页缓存、动态网页静态化、应用层数据缓存、分布式缓存、Web服务器缓存、反向代理缓存、脚本解释速度、页面组件分离、浏览器本地缓存、浏览器并发请求、文件的分发、数据库I/O优化、数据库访问、数据库分布式......一起来看看 《构建高性能Web站点》 这本书的介绍吧!
