jQuery全能列表淡入淡出插件
1.新闻内容的滚动切换显示
2.图片列表的幻灯片切换显示
3.class形式的切换
页面jQuery代码:
$(function(){
$("#news").innerfade({
animationtype: "slide",
speed: 750,
timeout: 2000,
type: "random",
containerheight: "1em"
});
$("#album").innerfade({
speed: "slow",
timeout: 4000,
type: "sequence",
containerheight: "191px"
});
$(".fade").innerfade({
speed: "slow",
timeout: 1000,
type: "sequence",
containerheight: "1.2em"
});
});