$(function() { //banner $('.flexslider').hover(function() { $('.flex-direction-nav').find('a').fadeToggle(300); }) //产品推荐 $('.pro-class li').hover(function() { $(this).children('a').addClass('active').end().siblings().children('a').removeClass('active'); $('.product-list').hide(); $('.product-list').eq($(this).index()).show(); }) //新闻 $('.news-tap li').hover(function() { $(this).addClass('on').siblings().removeClass('on'); $('.news-list').hide(); $('.news-list').eq($(this).index()).show(); }) //导航 $(".nav-list li").hover(function() { $(this).find("ul").stop().slideDown(300); }, function() { $(this).find("ul").stop().slideUp(300); }); //供应信息选项卡 $('.dMtab ul li').hover(function() { $('.gqtab .bd > ul').hide(); $(this).addClass('select').siblings().removeClass('select'); $('.gqtab .bd > ul').eq($(this).index()).show(); }) //关键词选项卡 $('.kw-tap li').first().addClass('active').siblings().removeClass('active'); $('.kw-tap li').click(function() { $(this).addClass('active').siblings().removeClass('active'); $('.kw-main .kw-list').hide(); $('.kw-main .kw-list').eq($(this).index()).show().siblings().hide(); }) }) function xiuxi(id) { $("#" + id).toggle(500); if (document.getElementById("h6_" + id).getAttribute("class") == "fs6") { $("#h6_" + id).attr("class", "fs6s"); } else { $("#h6_" + id).attr("class", "fs6"); } } //等比缩放 function AutoResizeImage(iwidth, iheight, ImgD) { //参数(图片,允许的宽度,允许的高度) var image = new Image(); image.src = ImgD.src; if (image.width > 0 && image.height > 0) { if (image.width / image.height >= iwidth / iheight) { if (image.width > iwidth) { ImgD.style.width = iwidth + "px"; ImgD.style.height = (image.height * iwidth) / image.width + "px"; } else { ImgD.style.width = image.width + "px"; ImgD.style.height = image.height + "px"; } } else { if (image.height > iheight) { ImgD.style.height = iheight + "px"; ImgD.style.width = (image.width * iheight) / image.height + "px"; } else { ImgD.style.width = image.width + "px"; ImgD.style.height = image.height + "px"; } } } }