//按钮banner
$(function() {
var len = $("#focusindex ul li").length; //获取焦点图个数
var index = 0;
var picTimer;
//以下代码添加数字按钮和按钮后的半透明条,还有上一页、下一页两个按钮
var btn = "
";
for(var i=0; i < len; i++) {
btn += "";
}
btn += "
";
$("#focusindex").append(btn);
//为小按钮添加鼠标滑入事件,以显示相应的内容
$("#focusindex .btn span").css("opacity",1).mouseover(function() {
index = $("#focusindex .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseover");
//上一页按钮
$("#focusindex .pre").click(function() {
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});
//下一页按钮
$("#focusindex .next").click(function() {
index += 1;
if(index == len) {index = 0;}
showPics(index);
});
//IPAI
$("#focusindex").on("swiperight",function(){
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});
$("#focusindex").on("swipeleft",function(){
index += 1;
if(index == len) {index = 0;}
showPics(index);
});
//本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度
//$("#focusindex ul").css("width",sWidth * (len));
//鼠标滑上焦点图时停止自动播放,滑出时开始自动播放
$("#focusindex").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
showPics(index);
index++;
if(index == len) {index = 0;}
},4000); //此4000代表自动播放的间隔,单位:毫秒
}).trigger("mouseleave");
//显示图片函数,根据接收的index值显示相应的内容
function showPics(index) { //普通切换
//var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
//$("#focusindex ul").stop(true,false).animate({"left":nowLeft},300); //通过animate()调整ul元素滚动到计算出的position
//$("#focusindex .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
$("#focusindex .btn span").stop(true,false).removeClass("on").eq(index).stop(true,false).addClass("on"); //为当前的按钮切换到选中的效果
$("#focusindex ul li").stop(true,false).animate({"opacity":"0"},1500).css("z-index",0).removeClass("bannerdh").eq(index).stop(true,false).animate({"opacity":"1"},1500).addClass("bannerdh").css("z-index",1); //为当前的按钮切换到选中的效果
}
});
// 文章列表专家滑动代码
(function($) {
$.fn.jCarouselLite = function(o) {
o = $.extend({
btnPrev: null, btnNext: null, btnGo: null, mouseWheel: false, auto: null, speed: 200, easing: null, vertical: false, circular: true, visible: 3, start: 0, scroll: 1, beforeStart: null, play: true,
afterEnd: null
}, o || {});
return this.each(function() {
var b = false, animCss = o.vertical ? "top" : "left", sizeCss = o.vertical ? "height" : "width";
var c = $(this), ul = $("ul", c), tLi = $("li", ul), tl = tLi.size(), v = o.visible;
ul.bind("mouseover", function() {
if (o.play) {
o.play = false;
}
})
ul.bind("mouseout", function() {
if (!o.play) {
o.play = true;
}
})
if (o.circular) {
ul.prepend(tLi.slice(tl - v - 1 + 1).clone()).append(tLi.slice(0, v).clone());
o.start += v
}
var f = $("li", ul), itemLength = f.size(), curr = o.start; c.css("visibility", "visible");
f.css({ overflow: "hidden", float: o.vertical ? "none" : "left" });
ul.css({ margin: "0", padding: "0", position: "relative", "list-style-type": "none", "z-index": "1" });
c.css({ overflow: "hidden", position: "relative", "z-index": "2", left: "0px" });
var g = o.vertical ? height(f) : width(f);
var h = g * itemLength;
var j = g * v; f.css({ width: f.width(), height: f.height() });
ul.css(sizeCss, h + "px").css(animCss, -(curr * g));
c.css(sizeCss, j + "px");
if (o.btnPrev) $(o.btnPrev).click(function() {
return go(curr - o.scroll)
});
if (o.btnNext) $(o.btnNext).click(function() {
return go(curr + o.scroll)
});
if (o.btnGo) $.each(o.btnGo, function(i, a) {
$(a).click(function() { return go(o.circular ? o.visible + i : i) })
});
if (o.mouseWheel && c.mousewheel) c.mousewheel(function(e, d) {
return d > 0 ? go(curr - o.scroll) : go(curr + o.scroll)
});
if (o.auto) {
setInterval(AutoPlay, o.auto + o.speed);
}
function vis() {
return f.slice(curr).slice(0, v)
};
function AutoPlay() { if (o.play) { go(curr + o.scroll); } };
function go(a) {
if (!b) {
if (o.beforeStart) o.beforeStart.call(this, vis());
if (o.circular) {
if (a <= o.start - v - 1) {
ul.css(animCss, -((itemLength - (v * 2)) * g) + "px");
curr = a == o.start - v - 1 ? itemLength - (v * 2) - 1 : itemLength - (v * 2) - o.scroll
}
else if (a >= itemLength - v + 1) {
ul.css(animCss, -((v) * g) + "px");
curr = a == itemLength - v + 1 ? v + 1 : v + o.scroll
}
else
curr = a
}
else {
if (a < 0 || a > itemLength - v)
return;
else curr = a
}
b = true;
ul.animate(animCss == "left" ? { left: -(curr * g)} : { top: -(curr * g) }, o.speed, o.easing, function() {
if (o.afterEnd) o.afterEnd.call(this, vis()); b = false
});
if (!o.circular) {
$(o.btnPrev + "," + o.btnNext).removeClass("disabled");
$((curr - o.scroll < 0 && o.btnPrev) || (curr + o.scroll > itemLength - v && o.btnNext) || []).addClass("disabled")
}
} return false
}
})
};
function css(a, b) { return parseInt($.css(a[0], b)) || 0 };
function width(a) { return a[0].offsetWidth + css(a, 'marginLeft') + css(a, 'marginRight') };
})(jQuery);
//切换 底部
function setTab(name,cursel,n){
for(i=1;i<=n;i++){
var menu=document.getElementById(name+i);
var con=document.getElementById("con_"+name+"_"+i);
menu.className=i==cursel?"on":"";
con.style.display=i==cursel?"block":"none";
}
}