function tab_showonmouseover(id, curtnum) {
$("#" + id + " dd").removeclass("li_on");
$("#" + id + " dt").removeclass("li_on");
$("#" + id + " dt_" + id).addclass("li_on");
$("#" + id + " dd_" + id).addclass("li_on");
}
function loadad() {
//读取广告by频道id
$("span[id^='spanad_']").each(function() {
//$.ajax({
//url: "/idata/return_ajax.aspx?fac=getadbycid&id=" + $(this).attr('id').replace('spanad_', ''),
//async: false,
//success: function(html) { if (html != "") { $(this).html(html) } }
//})
$(this).load("/idata/return_ajax.aspx?fac=getadbycid&id=" + $(this).attr('id').replace('spanad_', ''));
})
}
$(document).ready(function() {
//切换显示
var shownum = 6;
$(".toggle li").bind("click", function() {
var num = $(this).text();
var list_ul = $(this).parent().parent().next();
var obj_ul = $(list_ul).find("ul").eq((num - 1));
$(this).parent().find("li").removeclass("li_on");
$(this).addclass("li_on");
if ($(obj_ul).html() == "") {
$(obj_ul).html("
数据加载中,请稍后....");
$.ajax({
url: "/idata/return_ajax.aspx?fac=getindex&id=" + $(list_ul).attr("id") + "&start=" + ((num - 1) * shownum) + "&end=" + (num * shownum),
async: false,
success: function(html) { $(obj_ul).html(html); }
})
}
$(list_ul).find("div").animate({
marginleft: "-" + (705 * (num - 1)) + "px"
}, 500);
});
///评论咨询
$.ajax({
url: "/idata/return_ajax.aspx?fac=getct_index",
async: false,
success: function(html) { if (html != "") { $(".comment_list").html(html) } }
})
//关注和销量
var settimeoutr;
$(".ranktop10_list ul li").bind("mouseover", function() {
cleartimeout(settimeoutr);
var obj = $(this);
settimeoutr = settimeout(function() {
$(obj).parent().find("li").removeclass("li_on");
$(obj).addclass("li_on");
}, 200);
});
//关注和销量
$(".ranktop10_list").find("ul").eq(0).find("li").eq(0).addclass("li_on");
$(".ranktop10_list").find("ul").eq(1).find("li").eq(0).addclass("li_on");
var settimeoutrt;
$(".ranktop10_tab li").bind("mouseover", function() {
cleartimeout(settimeoutrt);
var obj = $(this);
settimeoutrt = settimeout(function() {
$(obj).parent().find("li").removeclass("li_on");
$(obj).addclass("li_on");
var id = $(obj).attr("id");
var obj_ul = $(obj).parent().parent().find(".ranktop10_list").find("ul");
$(obj_ul).hide();
$(obj_ul).eq(id).show();
}, 200)
});
$(".experience .experience_list").find("li").eq(0).addclass("li_on");
$(".influence .experience_list").find("li").eq(0).addclass("li_on");
//体验中心
var settimeouteel;
$(".experience").find(".experience_list").find("li").bind("mouseover", function() {
var obj = $(this);
cleartimeout(settimeouteel);
settimeouteel = settimeout(function() {
$(obj).parent().find("li").removeclass("li_on");
$(obj).addclass("li_on");
}, 200);
});
///欧诺学堂
var settimeouth;
$(".hschool_title li").bind("mouseover", function() {
var obj = $(this);
cleartimeout(settimeouth);
settimeouth = settimeout(function() {
$(obj).parent().find("li").removeclass("li_on");
$(obj).addclass("li_on");
var id = $(obj).attr("id");
var obj_ul = $(obj).parent().parent().find(".hschool_list").find("ul");
$(obj_ul).hide();
$(obj_ul).eq(id).show();
}, 200);
});
flash_ad();
//欧诺公告
//$(".notice_list ul").scroll({ line: 1, speed: 800, timer: 3000 });
//没有广告时隐藏高度
$(".dadr").each(function() {
if ($(this).html() == "") {
$(this).css({ height: "0px" });
}
});
$(".dadl").each(function() {
if ($(this).html() == "") {
$(this).css({ height: "0px" });
}
});
$(".dad").each(function() {
if ($(this).html() == "") {
$(this).css({ height: "0px" });
}
});
loadad();
});
(function($) {
$.fn.extend({
scroll: function(opt, callback) {
//参数初始化
if (!opt) var opt = {};
var _this = this;
var lineh = _this.find("li:first").height(), //获取行高
line = opt.line ? parseint(opt.line, 10) : parseint(this.height() / lineh, 10), //每次滚动的行数,默认为一屏,即父容器高度
speed = opt.speed ? parseint(opt.speed, 10) : 500, //卷动速度,数值越大,速度越慢(毫秒)
timer = opt.timer ? parseint(opt.timer, 10) : 3000; //滚动的时间间隔(毫秒)
if (line == 0) line = 1;
var upheight = 0 - line * lineh;
//滚动函数
scrollup = function() {
_this.animate({
margintop: upheight
}, speed, function() {
for (i = 1; i <= line; i++) {
_this.find("li:first").appendto(_this);
}
_this.css({ margintop: 0 });
});
}
//鼠标事件绑定
_this.hover(function() {
clearinterval(timerid);
}, function() {
timerid = setinterval("scrollup()", timer);
}).mouseout();
}
})
})(jquery);
//首页flash广告
function flash_ad() {
var defaultopts = { interval: 5000, fadeintime: 300, fadeouttime: 200 };
//iterate over the current set of matched elements
var _titles = $("ul.slide_txt li");
$(_titles).eq(0).addclass("li_on");
var _titles_bg = $("ul.bg li");
$(_titles_bg).eq(0).addclass("li_on");
var _bodies = $("ul.slide-pic li");
$(_bodies).eq(0).addclass("li_on");
var _count = $(_titles).size();
var _current = 0;
var _intervalid = null;
var stop = function() { window.clearinterval(_intervalid); };
var slide = function(opts) {
if (opts) {
_current = opts.current || 0;
} else {
_current = (_current >= (_count - 1)) ? 0 : (++_current);
};
_bodies.filter(":visible").fadeout(defaultopts.fadeouttime, function() {
_bodies.eq(_current).fadein(defaultopts.fadeintime);
_bodies.removeclass("li_on").eq(_current).addclass("li_on");
});
_titles.removeclass("li_on").eq(_current).addclass("li_on");
_titles_bg.removeclass("li_on").eq(_current).addclass("li_on");
}; //endof slide
var go = function() {
stop();
_intervalid = window.setinterval(function() { slide(); }, defaultopts.interval);
}; //endof go
var itemmouseover = function(target, items) {
stop();
var i = $.inarray(target, items);
slide({ current: i });
}; //endof itemmouseover
_titles.hover(function() { if ($(this).attr('class') != 'li_on') { itemmouseover(this, _titles); } else { stop(); } }, go);
//_titles_bg.hover(function() { itemmouseover(this, _titles_bg); }, go);
_bodies.hover(stop, go);
//trigger the slidebox
go();
}