//nav var ary = location.href.split("&"); $(".nav").slide({ type:"menu", titcell:".li_top", targetcell:".sub",effect:"slidedown", delaytime:300 , triggertime:100, defaultplay:false,returndefault:true }); //index_banner $(".index_banner").slide({ titcell:".hd ul", maincell:".bd ul", effect:"fold", autoplay:true, autopage:true, delaytime:1000,intertime:5000} ); $(".index_banner").hover(function(){ $(this).find("a.prev").animate({left:'30px',opacity:'1'},"fast"); $(this).find("a.next").animate({right:'30px',opacity:'1'},"fast"); },function(){ $(this).find("a.prev").animate({left:'-30px',opacity:'0'},"fast"); $(this).find("a.next").animate({right:'-30px',opacity:'0'},"fast"); }) //设置input框文字点击消失 $(document).ready(function(){ $("input[focucmsg]") .each (function(){ $(this).val($(this).attr("focucmsg")); $(this).val($(this).attr("focucmsg")).css("color","#e3dfdf"); $(this).focus(function(){ if($(this).val() == $(this).attr("focucmsg")) { $(this).val(''); $(this).val('').css("color","#3e3e3e"); } }); $(this).blur(function(){ if(!$(this).val()){ $(this).val($(this).attr("focucmsg")); $(this).val($(this).attr("focucmsg")).css("color","#979393"); } }); }); }); $(document).ready(function(){ $('.search_btn').click(function(){ var words=$('.search_input').val(); if($.trim(words)=="请输入关键字"||$.trim(words)==" "){ $('.search_input').attr("value",' ') $('.search_btn').submit(); } }); }); //index $(function () { function isscrolledintoview(elem) { var docviewtop = $(window).scrolltop(); var docviewbottom = docviewtop + $(window).height(); var elemtop = $(elem).offset().top; if (elemtop + 50 < docviewbottom) { return true } else { return false } } function animatetop(item, time,callback) { if ($(item).attr('init') == 'false'&& isscrolledintoview($(item).parent()) ){ $(item).attr('init', 'true'); settimeout(function(){ $(item).animate({'bottom': '0'}, 1000, 'easeoutcubic'); callback; },time) } } function ftanimate(item, time) { if ($(item).attr('init') == 'false'&& isscrolledintoview($(item))) { $(item).attr('init', 'true'); settimeout(function(){ $(item).animate({'bottom': '0'}, 1000, null); },time) } } var floor1init = false, boxelemets = $('.j_box'), box2elemets = $('.j_box2'), fromnav3 = true; $.each(boxelemets, function () { $(this).attr('init', 'false'); }); $.each(box2elemets, function () { $(this).attr('init', 'false'); }); function animateinit(){ $.each(boxelemets, function () { if ($(this).attr('init') == 'false' && isscrolledintoview($(this))) { $(this).attr('init', 'true'); $(this).animate({'left': '50%'}, 1000, 'easeoutcubic'); } }); if (!floor1init) { animatetop('.star1', 0); animatetop('.star2', 0); } } animateinit(); $(window).scroll(function () { animateinit(); }); }); //案例效果 $(".index_pro li a").not("li.li_3 a").hover(function(){ $(this).find("span").stop().animate({'top': 0}, 400); },function(){$(this).find("span").stop().animate({'top': 232}, 400);}) $(".index_pro li.li_3 a").hover(function(){ $(this).find("span").stop().animate({'top': 0}, 400); },function(){$(this).find("span").stop().animate({'top': 472}, 400);}) $(".index_about li.li_p a").hover(function(){ $(this).find("span").stop().animate({'top': 0}, 400); },function(){$(this).find("span").stop().animate({'top': 335}, 400);}) //新闻 $(".index_news").slide({ maincell:".tab-bd-in", effect:"fold", vis:1, opp:true, autoplay:true, delaytime:800 }); //团队 $(".index_team").slide({ maincell:"dd", effect:"fold", vis:1, opp:true, autoplay:true, delaytime:800 }); //客服 $(function(){ $(".suspend").mouseover(function() { $(this).stop(); $(this).animate({width: 160}, 100); }); $(".suspend").mouseout(function() { $(this).stop(); $(this).animate({width: 40}, 200); }); });