jquery内置几种常见的动画效果,但还不够丰富,今天给大家介绍个淡入淡出的动画效果插件。
来看demo:http://www.36ria.com/demo/innerfade/index.htm
使用教程
引入jquery和插件
- <script type="text/javascript" src="js/jquery.js"></script>
- <script type="text/javascript" src="js/jquery.innerfade.js"></script>
初始化
- $('ul#portfolio').innerfade({
- speed: 1000,
- timeout: 5000,
- type: 'sequence',
- containerheight: '220px'
- });
参数
- speed:动画速度
- timeout:动画延迟
- type:动画类别,三种random随机切换,sequence默认参数顺序切换,random_start貌似也是按逐个切换
- containerheight:容器高度

