//fw// $(function(){ $(".border_animation").mouseenter(function(){ $(this).addclass("hover"); }); $(".border_animation").mouseleave(function(){ $(this).removeclass("hover"); }); }); // form $(function(){ $('.submit').click(function () { var msgcontext = $('.text').val(); var msgname = $('.name').val(); var msgtel = $('.tel').val(); $.post("/api/message.ashx?action=add", { "kcontent": msgcontext, "kuser": msgname, "kphone": msgtel }, function (d) { if (d == "1") { alert("提交成功"); $('.text').val(""); $('.name').val(""); $('.tel').val(""); } else { alert("请检查信息是否正确,留言内容至少10字!"); } }); }) }) //新闻滚动// $(function () { $(".wel_con").slide({maincell: ".tel_news ul", effect: "toploop", autoplay: true, vis: 1, scroll: 1, delaytime:500, }); }); //news// $(".news_t li:first").addclass("casehover"); $(".industry .industry_nr").eq(0).show(); $(".news_t li").hover(function () { $(this).addclass("casehover").siblings().removeclass("casehover"); $(".industry .industry_nr").hide().eq($(this).index()).show(); }, function () { }); $(function () { $(".fc").slide({maincell: ".bd ul", effect: "leftloop", autoplay: true, vis: 4, scroll: 1, delaytime:500, prevcell: ".k01", nextcell: ".k02" }); }); //ys// $(".ys_list li:first").addclass("casehover"); $(".ys_r .ys_img").eq(0).show(); $(".ys_list li").hover(function () { $(this).addclass("casehover").siblings().removeclass("casehover"); $(".ys_r .ys_img").hide().eq($(this).index()).show(); }, function () { }); //case// $(function () { $(".case_box").slide({maincell: ".bd ul", effect: "leftloop", autoplay: true, vis: 1, scroll: 1, delaytime:500, prevcell: ".k01", nextcell: ".k02" }); }); //honor// $(".ry_list li:first").addclass("casehover"); $(".ry_box .ry").eq(0).show(); $(".ry_list li").hover(function () { $(this).addclass("casehover").siblings().removeclass("casehover"); $(".ry_box .ry").hide().eq($(this).index()).show(); }, function () { }); $(function () { $(".industry-left").slide({maincell: ".bd ul", effect: "leftloop", autoplay: true, vis: 2, scroll: 1, delaytime:500, prevcell: ".k01", nextcell: ".k02" }); }); //ys// jquery(".ys_box").slide({maincell: ".bd ul", effect: "leftloop", autoplay: true, vis: 1, scroll: 1, delaytime:500,prevcell: ".ys_01", nextcell: ".ys_02"}); jquery(".news_l").slide({titcell:".hd ul",maincell:".bd ul",autopage:true,effect:"left",autoplay:true,vis:1}); var lock = true; $(window).scroll(function () { var windowtop = $(window).scrolltop(); var numrowtop = $('.num').offset().top - 800; if (windowtop >= numrowtop && lock) { $('.scrollnum').countto({ lastsymbol: "", //显示在最后的字符 from: 0, // 开始时的数字 speed: 3000, // 总时间 refreshinterval: 100, // 刷新一次的时间 beforesize: 0, //小数点前最小显示位数,不足的话用0代替 decimals: 0, // 小数点后的位数,小数做四舍五入 }) lock = false; } })